Skip to content

Commit

Permalink
Merge pull request #48 from vimeo/go1.23-bump
Browse files Browse the repository at this point in the history
actions: add go 1.23 to test matrix
  • Loading branch information
dfinkel authored Nov 19, 2024
2 parents cb54caf + 4df8545 commit 5440c82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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.17, 1.18, '1.19', '1.20', '1.21', '1.22']
goversion: [1.17, 1.18, '1.19', '1.20', '1.21', '1.22', '1.23']
steps:
- name: Set up Go ${{matrix.goversion}} on ${{matrix.os}}
uses: actions/setup-go@v3
Expand All @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v1

- name: gofmt
if: ${{matrix.goversion == '1.22'}}
if: ${{matrix.goversion == '1.23'}}
run: |
[[ -z $(gofmt -l $(find . -name '*.go') ) ]]
Expand Down

0 comments on commit 5440c82

Please sign in to comment.