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 18444d3f98 - Show all commits

View File

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