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 c6d8575ae5 - Show all commits

View File

@ -33,6 +33,16 @@ jobs:
- run: pip install black - run: pip install black
- run: black --check . - 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 --profile black --check .
stability-extra-test: stability-extra-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: