Skip to content

Commit

Permalink
don't lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bashar-515 committed Jan 16, 2025
1 parent 1a6630e commit fb63699
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ jobs:

- name: Verify no uncommitted changes from "make build-go lint-go generate-go"
run: |
sudo -Hu testbot bash -lc 'git init && git add . && make build-go lint-go generate-go'
sudo -Hu testbot bash -lc 'git init && git add . && make build-go generate-go'
GEN_DIFF=$(git status -s)
if [ -n "$GEN_DIFF" ]; then
echo '"make build-go lint-go generate-go" resulted in the following untracked changes:' 1>&2
echo '"make build-go generate-go" resulted in the following untracked changes:' 1>&2
git diff
echo '"make build-go lint-go generate-go" resulted in changes not in git' 1>&2
echo '"make build-go generate-go" resulted in changes not in git' 1>&2
git status
exit 1
fi
Expand Down

0 comments on commit fb63699

Please sign in to comment.