micro-tests #372

Merged
vtolstov merged 24 commits from micro-tests into v3 2024-12-10 23:45:54 +03:00
Showing only changes of commit 356abfd818 - Show all commits

View File

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