add micro-tests trigger
Some checks failed
lint / lint (pull_request) Successful in 46s
test / test (pull_request) Failing after 41s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2024-12-10 16:16:16 +03:00
parent 1c1b9c0a28
commit 9345dd075a

View File

@ -25,7 +25,6 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
ref: master ref: master
fetch-depth: 1
filter: 'blob:none' filter: 'blob:none'
repository: unistack-org/micro-tests repository: unistack-org/micro-tests
path: micro-tests path: micro-tests
@ -36,8 +35,13 @@ jobs:
- name: deps - name: deps
run: go get -v -d ./... run: go get -v -d ./...
- name: workflow - name: workflow
run: go work init . ./micro-tests run: |
cd ../
go work init
go work use *
- name: test - name: test
env: env:
INTEGRATION_TESTS: yes INTEGRATION_TESTS: yes
run: cd micro-tests && go test -mod readonly -v ./... run: |
cd micro-tests
go test -mod readonly -v ./...