note that debug-print needs to be mutually exclusive #528
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From https://github.com/samblenny/autofmt-demo/blob/main/.github/workflows/trailing_whitespace_check.yml | |
name: trailing_whitespace_check | |
on: push | |
jobs: | |
trailing_whitespace_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out branch source | |
uses: actions/checkout@v4 | |
- name: Check .rs files for trailing whitespace | |
run: > | |
find . -name '*.rs' -print0 | |
| xargs -0 grep -c --with-filename -P '[ \t]$' | |
| grep -v ':0$' | |
| perl -e 'while(<>){print;$n+=1};if($n>0){exit 1;};print "PASS\n";' |