updates #207

Merged
vtolstov merged 293 commits from updates into v3 2023-03-24 00:29:35 +03:00
188 changed files with 7782 additions and 3811 deletions
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 ./...