Skip to content

Commit

Permalink
Add Go 1.23 to the Tested Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiosalvatore committed Aug 30, 2024
1 parent 5d23ad9 commit 00a6839
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
goversion: [1.19, "1.20", "1.21", "1.22"]
goversion: ["1.19", "1.20", "1.21", "1.22", "1.23"]
steps:
- name: Set up Go ${{matrix.goversion}} on ${{matrix.os}}
uses: actions/setup-go@v5
Expand All @@ -23,21 +23,13 @@ jobs:
[[ -z $(gofmt -l $(find . -name '*.go') ) ]]
- name: Get dependencies
env:
GO111MODULE: on
run: go mod download

- name: Vet
env:
GO111MODULE: on
run: go vet -mod=readonly ./...

- name: Test
env:
GO111MODULE: on
run: go test -mod=readonly -v -count 2 ./...

- name: Race Test
env:
GO111MODULE: on
run: go test -race -mod=readonly -v -count 2 ./...

0 comments on commit 00a6839

Please sign in to comment.