Skip to content

Commit

Permalink
github
Browse files Browse the repository at this point in the history
Signed-off-by: weizhoublue <[email protected]>
  • Loading branch information
weizhoublue committed Dec 25, 2024
1 parent db0bd62 commit 6dcc7eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/lint-golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,15 @@ jobs:
- name: Check build
run: |
go vet ./... || {echo "go vet failed"; exit 1 ; }
make build-binaries || {echo "make build-binaries failed"; exit 1 ; }
if ! go vet ./... ; then
echo "go vet failed"
exit 1
fi
if ! make build-binaries ; then
echo "make build-binaries failed"
exit 1
fi
echo "succeed to check build"
# ================ lint
- name: Run golangci-lint
Expand Down
Binary file removed bin/agent
Binary file not shown.

0 comments on commit 6dcc7eb

Please sign in to comment.