feat: Apply and check autoformatting #8

Merged
kenkeiras merged 5 commits from apply-and-check-autoformatting into develop 2024-08-19 21:41:33 +00:00
Showing only changes of commit 0a55c64551 - Show all commits

View File

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