isle-portable/.github/workflows/format.yml

20 lines
373 B
YAML
Raw Normal View History

2023-10-24 19:38:27 -04:00
name: Format
on: [push, pull_request]
jobs:
clang-format:
2024-01-11 04:46:37 -05:00
name: 'C++'
2023-10-24 19:38:27 -04:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
2023-10-24 19:38:27 -04:00
- name: Run clang-format
run: |
find CONFIG LEGO1 ISLE -iname '*.h' -o -iname '*.cpp' | xargs \
2023-10-24 19:38:27 -04:00
pipx run "clang-format>=17,<18" \
--style=file \
-i
git diff --exit-code