mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
7fc1f8019f
* Implement ViewROI and base classes * Clean up Orientable header * Move tgl to tgl subdirectory, and use target_include_directories * Move classes to submodules * Fix some missed references * Fix/match UpdateWorldData * Renaming / removing MxTypes / refactoring * Consistent naming for Matrix * Adjust format action * Add Vector3/Vector4 to Data vector * Add TGL comment * Add a comment about Matrix4Impl * Add ROI comment --------- Co-authored-by: Anonymous Maarten <anonymous.maarten@gmail.com> Co-authored-by: Christian Semmler <mail@csemmler.com>
22 lines
No EOL
485 B
YAML
22 lines
No EOL
485 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 \
|
|
LEGO1/tgl/*.h \
|
|
LEGO1/viewmanager/*.cpp LEGO1/viewmanager/*.h |