Skip to content

Commit

Permalink
Upgrade go version in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Piotrowski <piotr@synadia.com>
  • Loading branch information
piotrpio committed Sep 10, 2024
1 parent 82acab9 commit 5196533
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

strategy:
matrix:
go: [ "1.21", "1.22" ]
go: [ "1.22", "1.23" ]
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -55,14 +55,14 @@ jobs:
shell: bash --noprofile --norc -x -eo pipefail {0}
run: |
go test -modfile=go_test.mod -v -run=TestNoRace -p=1 ./... --failfast -vet=off
if [ "${{ matrix.go }}" = "1.22" ]; then
if [ "${{ matrix.go }}" = "1.23" ]; then
./scripts/cov.sh CI
else
go test -modfile=go_test.mod -race -v -p=1 ./... --failfast -vet=off -tags=internal_testing
fi
- name: Coveralls
if: matrix.go == '1.22'
if: matrix.go == '1.23'
uses: coverallsapp/github-action@v2
with:
file: acc.out

0 comments on commit 5196533

Please sign in to comment.