mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
20 lines
401 B
YAML
20 lines
401 B
YAML
|
name: Format
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
clang-format:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Run clang-format
|
||
|
run: |
|
||
|
pipx run "clang-format>=17,<18" \
|
||
|
--Werror \
|
||
|
--dry-run \
|
||
|
--style=file \
|
||
|
ISLE/*.cpp ISLE/*.h \
|
||
|
LEGO1/*.cpp LEGO1/*.h \
|
||
|
LEGO1/realtime/*.cpp LEGO1/realtime/*.h
|