Skip to content

Commit e502cdc

Browse files
Adding Go 1.21.x for CI coverage (#2697)
* Update build.yml Add support to go 1.21.x * Update doctests.yaml --------- Co-authored-by: ofekshenawa <[email protected]>
1 parent 33edd3d commit e502cdc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
go-version: [1.19.x, 1.20.x]
19+
go-version: [1.19.x, 1.20.x, 1.21.x]
2020

2121
services:
2222
redis:

.github/workflows/doctests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
go-version: [ "1.18", "1.19", "1.20" ]
28+
go-version: [ "1.18", "1.19", "1.20", "1.21" ]
2929

3030
steps:
3131
- name: Set up ${{ matrix.go-version }}
@@ -38,4 +38,4 @@ jobs:
3838

3939
- name: Test doc examples
4040
working-directory: ./doctests
41-
run: go test
41+
run: go test

0 commit comments

Comments
 (0)