mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
35 lines
787 B
YAML
35 lines
787 B
YAML
name: Format
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build isledecomp library
|
|
shell: bash
|
|
run: |
|
|
pip install black pylint tools/isledecomp
|
|
|
|
- name: Run pylint and black
|
|
shell: bash
|
|
run: |
|
|
pip install -r tools/reccmp/requirements.txt
|
|
pylint tools --ignore=build,tests
|
|
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
|