Skip to content

Commit

Permalink
test with go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
abice committed Jul 12, 2024
1 parent 51a0897 commit a370ac0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: false
matrix:
go:
- "1.20"
- "1.21"
- "1.22"
name: run tests with go version ${{ matrix.go }}
steps:
- name: install go
Expand All @@ -35,7 +35,7 @@ jobs:
make cover
- name: Coveralls
if: (matrix.go == '1.21')
if: (matrix.go == '1.22')
env:
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
run: |
Expand All @@ -44,7 +44,7 @@ jobs:
fi
- name: Upload coverage
if: (matrix.go == '1.21')
if: (matrix.go == '1.22')
uses: actions/upload-artifact@v4
with:
name: coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ">=1.20.2"
go-version: ">=1.22.2"
- name: Ensure Go
run: go version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ">=1.20.2"
go-version: ">=1.22.2"
- name: Ensure Go
run: go version

Expand Down

0 comments on commit a370ac0

Please sign in to comment.