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 44a36b1 commit 0601aa3Copy full SHA for 0601aa3
.github/workflows/build-and-test.yml
@@ -32,6 +32,11 @@ jobs:
32
run: |
33
git diff --exit-code || (echo "Generated mocks are not up-to-date. Please run 'go generate ./...' locally and push the updated files." && exit 1)
34
35
+ - name: Verify go.mod is tidy
36
+ run: |
37
+ go mod tidy
38
+ git diff --exit-code || (echo "go.mod or go.sum is not tidy. Please run 'go mod tidy' locally and push the updated files." && exit 1)
39
+
40
- name: Run golangci-lint
41
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8
42
with:
0 commit comments