We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ec0d3 commit 89c9370Copy full SHA for 89c9370
.github/workflows/ci.yml
@@ -58,14 +58,14 @@ jobs:
58
shell: pwsh
59
if: runner.os == 'Windows'
60
run: |
61
- .venv\Scripts\Activate.ps1
+ .\.venv\Scripts\activate.ps1
62
63
echo "--- Running Lint and Format Check ---"
64
- ruff check src/ tests/
65
- ruff format --check src/ tests/
+ uv run python -m ruff check src/ tests/
+ uv run python -m ruff format --check src/ tests/
66
67
echo "--- Running Tests with Coverage ---"
68
- coverage run -m unittest discover tests
+ uv run python -m coverage run -m unittest discover tests
69
70
# Load report
71
- name: Upload coverage reports to Codecov
0 commit comments