Skip to content

Commit 3bed1dd

Browse files
committed
fix github action lint
1 parent e9587b6 commit 3bed1dd

File tree

2 files changed

+8
-36
lines changed

2 files changed

+8
-36
lines changed

.github/workflows/golangci-lint.yml

+8-35
Original file line numberDiff line numberDiff line change
@@ -15,40 +15,13 @@ jobs:
1515
name: lint
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
19-
- uses: actions/setup-go@v5
20-
with:
21-
go-version: '1.22'
22-
cache: false
23-
- name: golangci-lint
24-
uses: golangci/golangci-lint-action@v6
25-
with:
26-
# Require: The version of golangci-lint to use.
27-
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
28-
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
29-
version: v1.64.5
30-
31-
# Optional: working directory, useful for monorepos
32-
# working-directory: somedir
33-
34-
# Optional: golangci-lint command line arguments.
35-
#
36-
# Note: By default, the `.golangci.yml` file should be at the root of the repository.
37-
# The location of the configuration file can be changed by using `--config=`
38-
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0
18+
- name: Check out code into the Go module directory
19+
uses: actions/checkout@v4
3920

40-
# Optional: show only new issues if it's a pull request. The default value is `false`.
41-
# only-new-issues: true
42-
43-
# Optional: if set to true, then all caching functionality will be completely disabled,
44-
# takes precedence over all other caching options.
45-
# skip-cache: true
46-
47-
# Optional: if set to true, then the action won't cache or restore ~/go/pkg.
48-
# skip-pkg-cache: true
49-
50-
# Optional: if set to true, then the action won't cache or restore ~/.cache/go-build.
51-
# skip-build-cache: true
21+
- name: Set up Go 1.22
22+
uses: actions/setup-go@v5
23+
with:
24+
go-version: "1.22"
5225

53-
# Optional: The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
54-
# install-mode: "goinstall"
26+
- name: Lint
27+
run: make lint

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ generate: tidy
77
# Coding style static check.
88
lint: tidy
99
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.5
10-
@go mod tidy
1110
golangci-lint run
1211

1312
vet: tidy

0 commit comments

Comments
 (0)