Upd workflows

This commit is contained in:
Aleksandr Tolstikhin
2024-12-11 04:12:11 +07:00
parent 8088eddc46
commit 3bb56868aa
8 changed files with 65 additions and 175 deletions

View File

@@ -17,17 +17,18 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
- name: checkout code
uses: actions/checkout@v4
with:
filter: 'blob:none'
- name: setup-go
- name: setup go
uses: actions/setup-go@v5
with:
cache-dependency-path: "**/*.sum"
go-version: 'stable'
- name: deps
run: go get -v -d ./...
- name: test
- name: setup deps
run: go get -v ./...
- name: run test
env:
INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./...