Skip to content

Commit 49d5a94

Browse files
committed
add ruff and mypy to actions
1 parent 7192416 commit 49d5a94

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@ jobs:
4444
- name: uv tree
4545
run: uv tree
4646

47+
#----------------------------------------------
48+
#---- Linting and Static Analysis
49+
#----------------------------------------------
50+
51+
- name: 🔎 Run Ruff
52+
run: uv run ruff check . # Or 'ruff format --check .' if you want formatting checks
53+
54+
- name: 🐍 Mypy Static Type Checker
55+
run: uv run mypy .
56+
4757
#----------------------------------------------
4858
#---- Pre-Checks
4959
#----------------------------------------------

0 commit comments

Comments
 (0)