fix: Improve output for build operations

This commit is contained in:
Anton Ovchinnikov
2025-06-22 19:26:25 +02:00
parent 89fb9efcfa
commit 26f34df3e6
3 changed files with 15 additions and 33 deletions
+4 -1
View File
@@ -31,7 +31,10 @@ jobs:
go-version: "1.23.2"
- name: Install dependencies
run: go mod tidy
run: |
go mod tidy
git diff --exit-code ||
(echo "go.mod or go.sum has changed. Please run 'go mod tidy' and commit the changes." && exit 1)
- name: Run tests
run: make test