persist issue #57 fix in test (#128)

* persist issue 57 fix in test

* have go fix output error on CI

* apply go fix required fix

* test no || for go fix command

* test no || for go fix command complete, it is needed

* forgot to fix
This commit is contained in:
Pat Whittingslow
2026-06-18 18:23:15 -03:00
committed by GitHub
parent e0ef681085
commit 6f5acd1948
2 changed files with 97 additions and 1 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ jobs:
- name: go fix
run: |
diff=$(go fix -diff ./...)
diff=$(go fix -diff ./... 2>&1) || true
if [ -n "$diff" ]; then
echo "$diff"
echo "::error::Files need go tool fix. Run: go tool fix ./..."