Skip to content

Commit

Permalink
Update test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
roeldev committed Feb 17, 2025
1 parent e1bc50f commit 5c64a63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
test:
strategy:
matrix:
go-version: [ "stable", "oldstable", 1.21.x, 1.20.x, 1.19.x, 1.18.x, 1.17.x ]
go-version: [ 'stable', 'oldstable', 1.22.x, 1.21.x, 1.20.x, 1.19.x, 1.18.x, 1.17.x ]
platform: [ ubuntu-latest, macos-latest, windows-latest ]

runs-on: ${{ matrix.platform }}
Expand All @@ -32,7 +32,7 @@ jobs:
go-version: ${{ matrix.go-version }}

- name: Get dependencies
run: go get -v -t -d ./...
run: go mod download

- name: Run tests
run: go test -race -v
run: go test -race -v -count=1 ./...

0 comments on commit 5c64a63

Please sign in to comment.