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.
1 parent 3d829d2 commit dc50ed5Copy full SHA for dc50ed5
.github/workflows/ci.yaml
@@ -18,12 +18,16 @@ jobs:
18
name: Linting
19
runs-on: ubuntu-latest
20
steps:
21
+ - name: Install Go
22
+ uses: actions/setup-go@v3
23
+ with:
24
+ go-version: 1.19
25
- name: Checkout repository
26
uses: actions/checkout@v2
27
- name: Run linter
- uses: golangci/golangci-lint-action@v2
28
+ uses: golangci/golangci-lint-action@v3
29
with:
- version: v1.43.0
30
+ version: v1.50.0
31
args: -c .golangci.yaml
32
only-new-issues: true
33
test:
@@ -41,9 +45,10 @@ jobs:
41
45
go:
42
46
- "1.17.x"
43
47
- "1.18.x"
48
+ - "1.19.x"
44
49
50
- name: Install Go
- uses: actions/setup-go@v2
51
52
53
go-version: ${{ matrix.go }}
54
0 commit comments