Replace black/isort with ruff (#188)

* Replace black/isort with ruff

* fix typo
This commit is contained in:
Stan Triepels
2024-05-11 03:04:32 +02:00
committed by GitHub
parent 1d1d0a9aa5
commit ad4d24e17c
35 changed files with 150 additions and 234 deletions

View File

@@ -7,6 +7,15 @@ on:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint with ruff
run: |
pipx install ruff==0.4.4
ruff format . --check && ruff check .
test:
runs-on: ubuntu-latest
strategy: