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 2fcf7f6 commit 602dc99
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ jobs:
test:
strategy:
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 ./...

- name: Send coverage
uses: shogo82148/actions-goveralls@v1
Expand Down

0 comments on commit 602dc99

Please sign in to comment.