Skip to content

Commit

Permalink
go.mod, workflows: make 1.22 minimal go version supported
Browse files Browse the repository at this point in the history
This follows our new go version policy: nspcc-dev/.github#31.

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
  • Loading branch information
carpawell committed Aug 20, 2024
1 parent 5f3cc73 commit 07bca47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-2022, macos-12, macos-14]
go: [ '1.21', '1.22', '1.23' ]
go: [ '1.22', '1.23' ]
exclude:
# Only latest Go version for Windows and MacOS.
- os: windows-2022
go: '1.21'
- os: windows-2022
go: '1.22'
- os: macos-12
go: '1.21'
- os: macos-12
go: '1.22'
- os: macos-14
go: '1.21'
- os: macos-14
go: '1.22'
# Exclude latest Go version for Ubuntu as Coverage uses it.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nspcc-dev/neofs-sdk-go

go 1.21
go 1.22

require (
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20221202181307-76fa05c21b12
Expand Down

0 comments on commit 07bca47

Please sign in to comment.