ran checks using uv

This commit is contained in:
Brian Bjarke Jensen
2025-08-28 21:22:34 +02:00
parent 10fc399746
commit 4ed4ab665b
+4 -7
View File
@@ -27,16 +27,13 @@ jobs:
run: uv sync
- name: Ruff lint
run: ruff check .
run: uv run ruff check .
- name: Ruff format
run: ruff format --check .
run: uv run ruff format --check .
- name: Pyupgrade check
run: pyupgrade --py313-plus $(git ls-files '*.py') && git diff --exit-code
- name: Install prettier
run: npm install --save-dev --save-exact prettier
run: uv run pyupgrade --py313-plus $(git ls-files '*.py') && git diff --exit-code
- name: Prettier format
run: npx prettier --check .
run: uv run prettier --check .