Skip to content

Commit

Permalink
Fix not all .hs files are traversed (#821)
Browse files Browse the repository at this point in the history
* Fix not all `.hs` files are traversed

* Check all tracked files only
  • Loading branch information
toku-sa-n authored Mar 3, 2024
1 parent 5d421d9 commit deac852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/presubmit-cabal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ jobs:

# TODO(mihaimaruseac): Move to using a custom action that can be reused
- name: Validate code formatting (self-validate)
run: cabal run hindent -- **/*.hs --validate
run: git ls-files -z '*.hs' | xargs -0 cabal run hindent -- --validate

0 comments on commit deac852

Please sign in to comment.