add micro-tests trigger

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2024-12-10 20:05:10 +03:00
parent d5f07922e8
commit 18444d3f98

@ -35,21 +35,21 @@ jobs:
go-version: 'stable'
- name: setup go work
env:
GOWORK: ${{ github.workspace }}/go.work
GOWORK: ${{ github.workspace }}/../go.work
run: |
cd ../
go work init
ls | grep -v go | xargs go work use
cat ${{ github.workspace }}/go.work
cat ${{ github.workspace }}/../go.work
go env
- name: setup deps
env:
GOWORK: ${{ github.workspace }}/go.work
GOWORK: ${{ github.workspace }}/../go.work
run: go get -v ./...
- name: run tests
env:
INTEGRATION_TESTS: yes
GOWORK: ${{ github.workspace }}/go.work
GOWORK: ${{ github.workspace }}/../go.work
run: |
cd micro-tests
go test -mod readonly -v ./...