Simplified C IR #116
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
# Check end of line and end of file whitespace | |
name: Whitespace | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
whitespace: | |
name: "Check whitespace" | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download fix-whitespace | |
run: | | |
curl -L -o fix-whitespace https://github.com/agda/fix-whitespace/releases/download/v0.1/fix-whitespace-0.1-linux.binary | |
chmod a+x fix-whitespace | |
- name: Check whitespace | |
run: | | |
shopt -s globstar | |
./fix-whitespace --verbose --check **/*.hs |