We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b7bac6 commit 5f2479dCopy full SHA for 5f2479d
.github/workflows/ci.yaml
@@ -13,9 +13,6 @@ permissions:
13
jobs:
14
ci:
15
runs-on: ubuntu-latest
16
- strategy:
17
- matrix:
18
- go-version: [1.22.x, 1.23.x]
19
steps:
20
- name: Checkout Code
21
uses: actions/checkout@v4
@@ -24,13 +21,8 @@ jobs:
24
- name: Install Go
25
22
uses: actions/setup-go@v5
26
23
with:
27
- go-version: ${{ matrix.go-version }}
+ go-version-file: go.mod
28
- name: Test
29
run: make test
30
- 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'
36
run: make checkgenerate && make lint
0 commit comments