Remove python format

This commit is contained in:
Christian Semmler 2024-11-14 13:52:21 -07:00
parent 437beb0d0f
commit 23e82d2090

View File

@ -16,22 +16,4 @@ jobs:
pipx run "clang-format>=17,<18" \
--style=file \
-i
git diff --exit-code
python-format:
name: 'Python'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install python libraries
shell: bash
run: |
pip install black==23.* pylint==3.2.7 pytest==7.* -r tools/requirements.txt
- name: Run pylint and black
shell: bash
run: |
pylint tools --ignore=build,ncc
black --check tools --exclude=ncc
git diff --exit-code