Fixes python-package workflow

This commit is contained in:
Mose Müller
2024-08-19 09:52:54 +02:00
committed by GitHub
parent aa37fa8533
commit f50976358b

View File

@ -31,10 +31,10 @@ jobs:
poetry install --with dev
- name: Check with ruff
run: |
ruff check src
poetry run ruff check src
- name: Check formatting with ruff
run: |
ruff format --check src
poetry run ruff format --check src
- name: Test with pytest
run: |
poetry run pytest