isle/.github/workflows/format.yml

38 lines
779 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
python-format:
2024-01-11 04:46:37 -05:00
name: 'Python'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install python libraries
shell: bash
run: |
pip install black==23.* pylint==3.* pytest==7.* -r tools/requirements.txt
- name: Run pylint and black
shell: bash
run: |
pylint tools --ignore=build,ncc
black --check tools --exclude=ncc