Skip to content

Commit 42bc38f

Browse files
authored
Include go versions 1.20 and 1.21 in CI. (#112)
1 parent 58c8bd5 commit 42bc38f

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,18 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
go-version: [ '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19' ]
10+
go-version:
11+
[
12+
"1.13",
13+
"1.14",
14+
"1.15",
15+
"1.16",
16+
"1.17",
17+
"1.18",
18+
"1.19",
19+
"1.20",
20+
"1.21",
21+
]
1122
steps:
1223
- uses: actions/checkout@v3
1324
- name: Setup Go ${{ matrix.go-version }}
@@ -30,7 +41,7 @@ jobs:
3041
runs-on: ubuntu-latest
3142
strategy:
3243
matrix:
33-
go-version: [ '1.18', '1.19' ]
44+
go-version: ["1.18", "1.19", "1.20", "1.21"]
3445
steps:
3546
- uses: actions/checkout@v3
3647
- name: Setup Go ${{ matrix.go-version }}

0 commit comments

Comments
 (0)