diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4a375645b..6b3b32dbe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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 \ No newline at end of file