Skip to content

Commit

Permalink
ci: minor fix to treefmt check
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa committed Jul 31, 2024
1 parent a53ba59 commit 5c3f5ca
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/treefmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v22
- uses: actions/checkout@v3
- id: files
- uses: actions/checkout@v4
- id: changed-files
uses: tj-actions/changed-files@v44
- name: Run treefmt
run: nix fmt
- name: Check diff
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
unformatted_touched=()
unformatted_untouched=()
while IFS= read -r unformatted_file; do
matched=
for changed_file in ${{ steps.files.outputs.all }}; do
for changed_file in ${ALL_CHANGED_FILES}; do
if [[ "$changed_file" == "$unformatted_file" ]]; then
unformatted_touched+=("$unformatted_file")
matched=1
Expand All @@ -36,6 +38,8 @@ jobs:
printf '%s\n' "${unformatted_untouched[@]}"
fi
echo # blank line
if (( ${#unformatted_touched[@]} )); then
echo "These files are created/edited but not formatted:"
printf '%s\n' "${unformatted_touched[@]}"
Expand Down

0 comments on commit 5c3f5ca

Please sign in to comment.