Compare commits

...

2 Commits

Author SHA1 Message Date
Sergio Martínez Portela
c5e18d3219 test: Add isort check to CI/CD. 2024-08-18 22:35:05 +02:00
Sergio Martínez Portela
1985b3b0c9 test: Add formatting check to CI/CD. 2024-08-18 22:34:55 +02:00

View File

@ -23,6 +23,24 @@ jobs:
- run: pip install mypy
- run: mypy org_rw --check-untyped-defs
style-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 .
style-sorted-imports:
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 isort
- run: isort --check .
stability-extra-test:
runs-on: ubuntu-latest
steps: