We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 73df677 + 2c69fe9 commit d141790Copy full SHA for d141790
.github/workflows/go.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: Set up Go
21
uses: actions/setup-go@v2
22
with:
23
- go-version: 1.16
+ go-version: 1.17
24
25
- name: Check out code into the Go module directory
26
uses: actions/checkout@v2
@@ -30,6 +30,12 @@ jobs:
30
go mod tidy -v
31
go test -race ./...
32
33
+ - name: Lint
34
+ uses: dominikh/staticcheck-action@v1.1.0
35
+ with:
36
+ version: "2021.1.1"
37
+ install-go: false
38
+
39
- name: Build
40
run: go build ./...
41
@@ -38,7 +44,7 @@ jobs:
44
# only release on tags
45
if: success() && startsWith(github.ref, 'refs/tags/')
46
- version: v0.156.1
47
+ version: v1.1.0
42
48
args: release --rm-dist
43
49
env:
50
GITHUB_TOKEN: ${{ secrets.FAILLINT_ACTIONS_BOT_TOKEN }}
0 commit comments