test: Add formatting check to CI/CD.

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

View File

@ -23,6 +23,15 @@ jobs:
- run: pip install mypy
- run: mypy org_rw --check-untyped-defs
formatting:
runs-on: ubuntu-latest
- 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:
runs-on: ubuntu-latest
steps: