Skip to content

Commit

Permalink
ci: add Go 1.24 support in workflows and adjust test tolerances
Browse files Browse the repository at this point in the history
- Add Go 1.24 to the list of versions in lint workflow
- Add Go 1.24 to the list of versions in testing workflow

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
  • Loading branch information
appleboy committed Feb 12, 2025
1 parent 8412413 commit 08332b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.22, 1.23]
go: [1.22, 1.23, 1.24]
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go: [1.22, 1.23]
go: [1.22, 1.23, 1.24]
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 08332b7

Please sign in to comment.