We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6144dd commit af84c6bCopy full SHA for af84c6b
1 file changed
.github/workflows/ci.yml
@@ -31,8 +31,13 @@ jobs:
31
- name: Install dependencies
32
run: make deps
33
34
- - name: Run checks (lint, vet, fmt-check, test)
35
- run: make check
+ - name: golangci-lint
+ uses: golangci/golangci-lint-action@v8
36
+ with:
37
+ version: v2.6.0
38
+
39
+ - name: Run checks (vet, fmt-check, test)
40
+ run: make vet fmt-check test
41
42
# Note: Validation tests with real cloud providers run in separate workflows
43
# See .github/workflows/validation-*.yml for provider-specific validation tests
0 commit comments