Skip to content

Commit

Permalink
Drop CI support for go 1.15 and 1.16, add support for go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
mennanov committed Mar 14, 2024
1 parent 7cfb817 commit 3fdedee
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21
- name: Setup Go 1.22
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.22'
- name: Run tests with coverage
run: go test -v -coverprofile=coverage.txt -covermode=atomic ./...
- uses: codecov/codecov-action@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.21
- name: Setup Go 1.22
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.22'
- name: Go vet
run: go vet ./...
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21' ]
go-version: [ '1.17', '1.18', '1.19', '1.20', '1.21', '1.22' ]

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

0 comments on commit 3fdedee

Please sign in to comment.