From e9037f003da57381b5d3e54f469cfb954b637451 Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Tue, 4 Nov 2025 19:29:49 +0300 Subject: [PATCH] ci: prepare github ci for go 1.24.x and 1.25.x, turn off noisy linter * linter is producing uncessary noise * benchstat is slow on PRs, we will turn it off untill it can be upgraded --- .github/workflows/benchstat.yml | 3 +++ .github/workflows/build.yml | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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