Skip to content

Commit

Permalink
workflows: use Go 1.23/1.24 for tests
Browse files Browse the repository at this point in the history
Nothing to change here code-wise, so go.mod is left as is.

Closes #39.

Signed-off-by: Andrey Butusov <andrey@nspcc.io>
  • Loading branch information
End-rey committed Feb 28, 2025
1 parent 3ce696b commit a2ec425
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
cache: true

- name: Write coverage profile
Expand All @@ -47,14 +47,14 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-2022, macos-14 ]
go_versions: [ '1.22', '1.23' ]
go_versions: [ '1.23', '1.24' ]
exclude:
- os: macos-14
go_versions: '1.22'
go_versions: '1.23'
- os: windows-2022
go_versions: '1.22'
- os: ubuntu-latest
go_versions: '1.23'
- os: ubuntu-latest
go_versions: '1.24'
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit a2ec425

Please sign in to comment.