test: Add formatting check to CI/CD.
Some checks failed
Testing / formatting (push) Waiting to run
Testing / stability-extra-test (push) Waiting to run
Testing / pytest (push) Successful in 29s
Testing / mypy (push) Has been cancelled

This commit is contained in:
Sergio Martínez Portela 2024-08-18 22:30:18 +02:00
parent 991781a249
commit 2ec354c6c7

View File

@ -23,6 +23,16 @@ jobs:
- run: pip install mypy - run: pip install mypy
- run: mypy org_rw --check-untyped-defs - run: mypy org_rw --check-untyped-defs
formatting:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install black
- run: black --check .
stability-extra-test: stability-extra-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: