Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- name: Lint with ruff
run: |
uv run ruff check .
- name: Security scan with bandit
run: |
uv run bandit -r trajpy
- name: Test with pytest
run: |
uv run pytest --cov=trajpy tests/
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: check-format fix test lint type-check all
.PHONY: check-format fix test lint type-check security all

check-format:
.venv/bin/ruff format trajpy --check
Expand All @@ -16,4 +16,7 @@ lint:
type-check:
.venv/bin/pyright trajpy

all: lint type-check check-format fix test
security:
.venv/bin/bandit -r trajpy

all: lint type-check check-format fix test security
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading