Skip to content

Commit

Permalink
Fix all Go versions in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
adambabik committed Feb 18, 2025
1 parent 65cb10d commit 1cf0015
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.24"]
name: Lint with Go ${{ matrix.go }}
name: Lint
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
go-version: ">=1.24"
- name: Install dependencies
run: make install/dev
# It duplicates running linter from pre-commit
Expand All @@ -36,7 +33,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: ["1.23"]
go: ["1.24"]
os: [ubuntu-latest, windows-latest]
name: Build and test with Go ${{ matrix.go }} on ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -125,7 +122,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ">=1.23"
go-version: ">=1.24"
- name: Setup & build
uses: stateful/runme-action@v2
with:
Expand Down

0 comments on commit 1cf0015

Please sign in to comment.