Compare commits

...

2 Commits

Author SHA1 Message Date
Sergio Martínez Portela
a5c9680798 test: Add isort check to CI/CD.
Some checks failed
Testing / pytest (push) Successful in 29s
Testing / mypy (push) Successful in 34s
Testing / style-formatting (push) Failing after 37s
Testing / style-sorted-imports (push) Failing after 26s
Testing / stability-extra-test (push) Successful in 31s
2024-08-18 22:39:51 +02:00
Sergio Martínez Portela
2ec354c6c7 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
2024-08-18 22:39:47 +02:00

View File

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