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 22d89bd commit 278e10dCopy full SHA for 278e10d
.github/workflows/pr.yml
@@ -5,17 +5,21 @@ on:
5
tags:
6
- v*
7
branches:
8
- - master
+ - main
9
pull_request:
10
jobs:
11
golangci-lint:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v3
15
+ - name: Install Go
16
+ uses: actions/setup-go@v2
17
+ with:
18
+ go-version: 1.17
19
- name: lint
- uses: golangci/golangci-lint-action@v2.5.2
20
+ uses: golangci/golangci-lint-action@v3.1.0
21
with:
- version: v1.40.1
22
+ version: v1.41.1
23
24
tests-on-unix:
25
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors
0 commit comments