ci: add ruff
Some checks failed
Continuous Integration / Lint, Check & Test (push) Failing after 40s

This commit is contained in:
Konstantin Fickel 2025-10-12 10:13:11 +02:00
parent acb0a0d26e
commit d827ea2375
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -19,6 +19,9 @@ jobs:
- name: Install the project
run: nix develop .#impure --command bash -c "uv sync --locked --all-extras --dev"
- name: Check with Ruff
run: nix develop .#impure --command bash -c "uv run ruff check"
- name: Test with PyTest
run: nix develop .#impure --command bash -c "uv run pytest --junit-xml test-report.xml"
@ -30,8 +33,5 @@ jobs:
path: test-report.xml
reporter: java-junit
- name: Check with Ruff
run: nix develop .#impure --command bash -c "uv run ruff check"
- name: Check with PyRight
run: nix develop .#impure --command bash -c "uv run pyright"