We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdf1030 commit 2c22bbeCopy full SHA for 2c22bbe
1 file changed
.github/workflows/go.yml
@@ -29,7 +29,7 @@ jobs:
29
- name: Install Go
30
uses: actions/setup-go@v5
31
with:
32
- go-version: 1.26.x
+ go-version: 1.25.x
33
- name: Check Go module tidiness
34
shell: bash
35
run: |
@@ -42,15 +42,16 @@ jobs:
42
exit 1
43
fi
44
- name: Run golangci-lint
45
- run: |
46
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
47
- golangci-lint run --timeout=30m
+ uses: golangci/golangci-lint-action@v6
+ with:
+ version: latest
48
+ args: --timeout=30m
49
50
test:
51
name: Test
52
strategy:
53
matrix:
- go-version: [ 1.26.x ]
54
+ go-version: [ 1.25.x ]
55
platform: [ ubuntu-latest, macos-latest, windows-latest ]
56
runs-on: ${{ matrix.platform }}
57
steps:
0 commit comments