We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07055f9 commit 424f899Copy full SHA for 424f899
2 files changed
.github/workflows/build.yml
@@ -29,10 +29,13 @@ jobs:
29
- name: Setup Go
30
uses: actions/setup-go@v5
31
with:
32
- go-version: "stable"
+ go-version-file: "go.mod"
33
+
34
+ - name: Install linter
35
+ uses: golangci/golangci-lint-action@v8
36
37
- name: Test and build
- run: make test build
38
+ run: make vet lint test build
39
40
- name: Upload artifact
41
uses: actions/upload-artifact@v4
.github/workflows/publish.yml
@@ -3,8 +3,7 @@ name: publish
3
on:
4
push:
5
tags:
6
- - "*"
7
- workflow_dispatch:
+ - "v*.*.*"
8
9
permissions:
10
contents: write
@@ -19,7 +18,7 @@ jobs:
19
18
20
21
22
23
24
- name: Release and publish
25
uses: goreleaser/goreleaser-action@v6
0 commit comments