mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-27 10:11:15 +00:00
Split out format
This commit is contained in:
parent
f779fa1557
commit
99b85f2474
32
.github/workflows/format.yml
vendored
32
.github/workflows/format.yml
vendored
@ -3,7 +3,25 @@ name: Format
|
|||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
format:
|
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 \
|
||||||
|
LEGO1/tgl/*.h \
|
||||||
|
LEGO1/viewmanager/*.cpp LEGO1/viewmanager/*.h
|
||||||
|
|
||||||
|
python-format:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -20,15 +38,3 @@ jobs:
|
|||||||
pip install -r tools/reccmp/requirements.txt
|
pip install -r tools/reccmp/requirements.txt
|
||||||
pylint tools --ignore=build,tests
|
pylint tools --ignore=build,tests
|
||||||
black --check tools
|
black --check tools
|
||||||
|
|
||||||
- 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 \
|
|
||||||
LEGO1/tgl/*.h \
|
|
||||||
LEGO1/viewmanager/*.cpp LEGO1/viewmanager/*.h
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user