Skip to content

Commit 9c044cc

Browse files
authored
Merge pull request #25 from stscoundrel/update/go-versions
CI: add Go 1.20 & 1.21 to version matrix
2 parents 32bb5c3 + f3ca385 commit 9c044cc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
go: ['1.17', '1.18', '1.19']
10+
go: ['1.17.x', '1.18.x', '1.19.x', '1.20.x', '1.21.x']
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Build with Go ${{ matrix.go }}

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
go: ['1.17', '1.18', '1.19']
10+
go: ['1.17.x', '1.18.x', '1.19.x', '1.20.x', '1.21.x']
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Lint in Go ${{ matrix.go }}

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
go: ['1.17', '1.18', '1.19']
10+
go: ['1.17.x', '1.18.x', '1.19.x', '1.20.x', '1.21.x']
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Unit Test in Go ${{ matrix.go }}

0 commit comments

Comments
 (0)