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 42b182f commit 85b1a44Copy full SHA for 85b1a44
.github/workflows/build.yml
@@ -25,6 +25,11 @@ jobs:
25
run: |
26
go mod tidy
27
# Step 4: Run Go Linter (golangci-lint)
28
+ - name: Install golangci-lint
29
+ run: |
30
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
31
+ echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
32
+
33
- name: Run Go Linter
34
run: golangci-lint run --disable-all -E gofmt -E govet --timeout=5m
35
0 commit comments