2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-06-10 08:43:27 +08:00

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
This commit is contained in:
Mohammed Sohail
2025-11-04 19:29:49 +03:00
parent 604175e6ca
commit e9037f003d
2 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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