diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02347d4..a5c71d8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: test: strategy: matrix: - go-version: [1.19.x, 1.20.x] + go-version: [1.22.x, 1.23.x] os: [ubuntu-latest, macos-latest, windows-latest] env: OS: ${{ matrix.os }} @@ -28,7 +28,7 @@ jobs: run: go test -race ./... -coverprofile=coverage.txt -covermode=atomic - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.20.x' + if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' with: file: ./coverage.txt flags: unittests