updates workflows

This commit is contained in:
Christoph Polcin 2022-10-16 01:13:50 +02:00
parent 8528c01163
commit d2a480ffa9
2 changed files with 4 additions and 3 deletions

View File

@ -15,8 +15,9 @@ jobs:
strategy:
matrix:
goversion:
- "1.19"
- "1.18"
- "1.17"
- "1.16"
steps:
- name: Set up Go
uses: actions/setup-go@v1
@ -27,4 +28,4 @@ jobs:
- name: Get dependencies
run: go get ./...
- name: Run Unit Tests
run: go test -v -cover -race ./...
run: go test -modfile=go_test.mod -v -cover -race ./...

View File

@ -7,4 +7,4 @@ install:
- go get ./...
script:
- go test -v --short ./...
- go test -modfile=go_test.mod -v --short ./...