diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 076c8b98..83f6667a 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -8,7 +8,7 @@ jobs: test: strategy: matrix: - go-version: [1.22.x,1.23.x, 1.24.x] + go-version: [1.23.x, 1.24.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -24,7 +24,7 @@ jobs: run: go test -race -covermode=atomic -coverprofile="profile.cov" ./... - name: Send Coverage - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' + if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x' uses: shogo82148/actions-goveralls@v1 with: path-to-profile: profile.cov