Upd workflows
Some checks failed
automerge / automerge (pull_request) Has been skipped
dependabot-automerge / automerge (pull_request) Has been skipped
autoapprove / autoapprove (pull_request) Successful in 13s
lint / lint (pull_request) Failing after 1m14s
test / test (pull_request) Successful in 3m20s

This commit is contained in:
Aleksandr Tolstikhin
2024-12-11 04:05:02 +07:00
parent 73b3ede7fc
commit 98fc22f872
8 changed files with 73 additions and 179 deletions

View File

@@ -17,15 +17,18 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup-go
- name: checkout code
uses: actions/checkout@v4
with:
filter: 'blob:none'
- 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 ./...