diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 35b5a01..b7084b0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,8 +5,8 @@ jobs: test: strategy: matrix: - go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x] - os: [ubuntu-latest, macos-latest] + go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x] + os: [ubuntu-24.04, macos-13, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -28,12 +28,12 @@ jobs: run: go build -v . - name: Test - run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... + run: go test -v -race -coverprofile='coverage.txt' -covermode=atomic ./... - name: Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{secrets.CODECOV_TOKEN}} - file: coverage.txt + files: coverage.txt flags: unittests name: codecov-umbrella