Skip to content

Commit

Permalink
Adding Go 1.21.x for CI coverage (#2697)
Browse files Browse the repository at this point in the history
* Update build.yml

Add support to go 1.21.x

* Update doctests.yaml

---------

Co-authored-by: ofekshenawa <104765379+ofekshenawa@users.noreply.github.com>
  • Loading branch information
peczenyj and ofekshenawa committed Sep 20, 2023
1 parent 33edd3d commit e502cdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.19.x, 1.20.x]
go-version: [1.19.x, 1.20.x, 1.21.x]

services:
redis:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/doctests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [ "1.18", "1.19", "1.20" ]
go-version: [ "1.18", "1.19", "1.20", "1.21" ]

steps:
- name: Set up ${{ matrix.go-version }}
Expand All @@ -38,4 +38,4 @@ jobs:

- name: Test doc examples
working-directory: ./doctests
run: go test
run: go test

0 comments on commit e502cdc

Please sign in to comment.