Skip to content

Commit

Permalink
debug: make find return 0
Browse files Browse the repository at this point in the history
  • Loading branch information
widmogrod committed May 12, 2024
1 parent 5d5752d commit c02fa01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
- run: dev/bootstrap.sh -nologs

- run: |
find $GOROOT -type f -name '*.go' -exec grep -l 'import ""' {} + 2>/dev/null || true
find / -type f -name '*.go' -exec grep -l 'import ""' {} + &2>/dev/null || true
- run: |
go fmt ./... || true
# run tests
- run: |
export RUN_EXPERIMENTAL_TEST="false"
Expand Down

0 comments on commit c02fa01

Please sign in to comment.