Upd test in yml
Some checks failed
pipeline / test (pull_request) Failing after 6s
pipeline / setup (pull_request) Successful in 15s
pipeline / lint (pull_request) Failing after 9m31s

This commit is contained in:
Aleksandr Tolstikhin 2024-12-06 02:33:34 +07:00
parent 90c6d48c82
commit cba9d6849e

View File

@ -29,9 +29,14 @@ jobs:
test: test:
name: test name: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: setup # needs: setup
steps: steps:
- name: test - name: test
env: env:
INTEGRATION_TESTS: yes INTEGRATION_TESTS: yes
run: go test -mod readonly -v ./... run: go test -mod readonly -v ./...
with:
checkout: actions/checkout@v3
deps: go get -v -d ./...
setup-go: actions/setup-go@v5
go-version: 'stable'