Compare commits

...

2 commits

Author SHA1 Message Date
d827ea2375
ci: add ruff
Some checks failed
Continuous Integration / Lint, Check & Test (push) Failing after 40s
2025-10-12 10:13:11 +02:00
acb0a0d26e
chore: ignore test-report.xml 2025-10-12 10:10:45 +02:00
2 changed files with 4 additions and 3 deletions

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"

1
.gitignore vendored
View file

@ -176,3 +176,4 @@ pyrightconfig.json
# End of https://www.toptal.com/developers/gitignore/api/python
.direnv
test-report.xml