There was an error while loading. Please reload this page.
1 parent 0e58c86 commit 882b581Copy full SHA for 882b581
1 file changed
.github/workflows/test.yml
@@ -34,8 +34,17 @@ jobs:
34
restore-keys: |
35
${{ runner.os }}-go1.25-
36
37
+ - name: Checking go mod tidy
38
+ run: |
39
+ go mod tidy -diff
40
+
41
- name: Build
42
run: make all -B
43
44
- name: Test
45
run: make test
46
47
+ - name: Check for uncommitted changes
48
49
+ err_msg="Changes found!!! Run 'make all -B' and commit changes"
50
+ git -c color.ui=always diff --exit-code || (>&2 echo "${err_msg}" && exit 1)
0 commit comments