Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ on:
pull_request:

env:
GO_VERSION: 1.24
GO_VERSION: 1.25
CODESPELL_VERSION: v2.4.1


jobs:
golangci-lint:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
golang: ['1.23', 'stable']
golang: ['1.23', '1.24', 'stable']
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest to test on minimal supported and maximum version here (1.23 and 'stable'), but up to you.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer running on all version of Go, despite compatibility: runners are free, resources are not ours and tests are completed in parallel :)


steps:
- uses: actions/checkout@v4
Expand Down
Loading