-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
83 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Check formatting with treefmt | ||
|
||
on: | ||
[push, pull_request] | ||
|
||
jobs: | ||
treefmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: cachix/install-nix-action@v22 | ||
- uses: actions/checkout@v3 | ||
- id: files | ||
uses: tj-actions/changed-files@v44 | ||
- name: Run treefmt | ||
run: nix fmt | ||
- name: Check diff | ||
run: | | ||
unformatted_touched=() | ||
unformatted_untouched=() | ||
while IFS= read -r unformatted_file; do | ||
matched= | ||
for changed_file in ${{ steps.files.outputs.all }}; do | ||
if [[ "$changed_file" == "$unformatted_file" ]]; then | ||
unformatted_touched+=("$unformatted_file") | ||
matched=1 | ||
break | ||
fi | ||
done | ||
if [[ -z "$matched" ]]; then | ||
unformatted_untouched+=("$unformatted_file") | ||
fi | ||
done <<< "$(git diff --name-only)" | ||
if (( ${#unformatted_untouched[@]} )); then | ||
echo "These files are not formatted, but out of scope of this PR:" | ||
printf '%s\n' "${unformatted_untouched[@]}" | ||
fi | ||
if (( ${#unformatted_touched[@]} )); then | ||
echo "These files are created/edited but not formatted:" | ||
printf '%s\n' "${unformatted_touched[@]}" | ||
exit 1 | ||
fi |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ ... }: | ||
|
||
{ | ||
projectRootFile = "flake.nix"; | ||
programs = { | ||
clang-format.enable = true; | ||
nixpkgs-fmt.enable = true; | ||
black.enable = true; | ||
}; | ||
} |