Skip to content

Commit 7801761

Browse files
committed
add golang v1.22.x support
1 parent 375abed commit 7801761

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
fail-fast: false
6464
max-parallel: 1
6565
matrix:
66-
go_version: ['1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x', '1.21.x']
66+
go_version: ['1.11.x', '1.12.x', '1.13.x', '1.14.x', '1.15.x', '1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x', '1.21.x', '1.22.x']
6767
runs-on: ubuntu-latest
6868
permissions:
6969
actions: read
@@ -81,14 +81,14 @@ jobs:
8181
go-version: ${{ matrix.go_version }}
8282
- name: Format
8383
run: |
84-
if [ "${{ matrix.go_version }}" = "1.21.x" ]; then
84+
if [ "${{ matrix.go_version }}" = "1.22.x" ]; then
8585
if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then
8686
exit 1
8787
fi
8888
fi
8989
- name: Golint
9090
run: |
91-
if [ "${{ matrix.go_version }}" = "1.21.x" ]; then
91+
if [ "${{ matrix.go_version }}" = "1.22.x" ]; then
9292
set -e
9393
go install honnef.co/go/tools/cmd/staticcheck@latest
9494
make staticcheck

0 commit comments

Comments
 (0)