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 896165b commit b1ae386Copy full SHA for b1ae386
.github/workflows/go.yml
@@ -27,7 +27,6 @@ jobs:
27
uses: golangci/golangci-lint-action@v8
28
with:
29
version: "latest"
30
- args: -c ./golangci.yml
31
- name: Format lint
32
run: |
33
make install-tools && make format && git diff && git diff --quiet
Makefile
@@ -9,7 +9,7 @@ install-tools: ## Install linting tools
9
go install github.com/segmentio/golines@latest
10
11
lint: ## Run golangci linter
12
- golangci-lint run -c ./golangci.yml ./...
+ golangci-lint run ./...
13
14
format: ## Format code
15
gofumpt -l -w -extra .
golangci.yml
0 commit comments