We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 93014ab + 8dafcef commit 73909bbCopy full SHA for 73909bb
.github/workflows/go.yml
@@ -1,5 +1,4 @@
1
---
2
-
3
name: Go CI Tests
4
5
on: # yamllint disable-line rule:truthy
@@ -14,14 +13,13 @@ env:
14
13
LOG_LEVEL: WARN
15
16
jobs:
17
18
test:
19
name: "Go CI Tests"
20
strategy:
21
fail-fast: false
22
matrix:
23
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
24
- go: ['1.22.x', '1.23.x', '1.24.x']
+ go: ["1.22.x", "1.23.x", "1.24.x"]
25
runs-on: ${{ matrix.os }}
26
steps:
27
- uses: actions/checkout@v4
@@ -44,10 +42,10 @@ jobs:
44
42
run: go vet -v ./...
45
43
46
- name: Lint golangci-lint
47
- uses: golangci/golangci-lint-action@v7
+ uses: golangci/golangci-lint-action@v8
48
with:
49
args: --timeout=10m
50
- version: v2.0.0
+ version: v2.1.0
51
skip-cache: true
52
53
- name: Test
0 commit comments