Skip to content

Commit 5f2479d

Browse files
Remove Go 1.22 workflow in CI
We bumped to Go 1.23 support in #14, so we don't need to run our workflow on an unsupported version. Just run based on the go version in go.mod.
1 parent 9b7bac6 commit 5f2479d

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ permissions:
1313
jobs:
1414
ci:
1515
runs-on: ubuntu-latest
16-
strategy:
17-
matrix:
18-
go-version: [1.22.x, 1.23.x]
1916
steps:
2017
- name: Checkout Code
2118
uses: actions/checkout@v4
@@ -24,13 +21,8 @@ jobs:
2421
- name: Install Go
2522
uses: actions/setup-go@v5
2623
with:
27-
go-version: ${{ matrix.go-version }}
24+
go-version-file: go.mod
2825
- name: Test
2926
run: make test
3027
- name: Lint
31-
# Often, lint & gofmt guidelines depend on the Go version. To prevent
32-
# conflicting guidance, run only on the most recent supported version.
33-
# For the same reason, only check generated code on the most recent
34-
# supported version.
35-
if: matrix.go-version == '1.23.x'
3628
run: make checkgenerate && make lint

0 commit comments

Comments
 (0)