diff --git a/.github/workflows/benchstat.yml b/.github/workflows/benchstat.yml index 1d4e728..ef7dcfb 100644 --- a/.github/workflows/benchstat.yml +++ b/.github/workflows/benchstat.yml @@ -9,6 +9,7 @@ on: [pull_request] jobs: incoming: runs-on: ubuntu-latest + if: false services: redis: image: redis:7 @@ -31,6 +32,7 @@ jobs: current: runs-on: ubuntu-latest + if: false services: redis: image: redis:7 @@ -55,6 +57,7 @@ jobs: benchstat: needs: [incoming, current] + if: false runs-on: ubuntu-latest steps: - name: Checkout diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 005a34d..1855fb4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go-version: [1.22.x, 1.23.x] + go-version: [1.24.x, 1.25.x] runs-on: ${{ matrix.os }} services: redis: @@ -45,7 +45,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - go-version: [1.22.x, 1.23.x] + go-version: [1.24.x, 1.25.x] runs-on: ${{ matrix.os }} services: redis: @@ -70,6 +70,7 @@ jobs: golangci: name: lint runs-on: ubuntu-latest + if: false steps: - uses: actions/checkout@v4