Skip to content

Commit

Permalink
chore(ci/test): deprecate go 1.19 and improves
Browse files Browse the repository at this point in the history
  • Loading branch information
savsgio committed Jul 4, 2024
1 parent 1ce7f7c commit d824329
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest]
go-version: [1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go version
- run: go get -t -v ./...
- run: go test -v -cover -race ./...
- run: go test -v -cover -shuffle=on ./...
- run: go test -v -cover -shuffle=on -race ./...

0 comments on commit d824329

Please sign in to comment.