File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,16 +36,16 @@ jobs:
3636 fi
3737
3838 - name : Run Linter
39- run : uv pip run ruff check --fix ${{ steps.module.outputs.name }}
39+ run : uv run -m ruff check --fix ${{ steps.module.outputs.name }}
4040
4141 - name : Run Formatter
42- run : uv pip run ruff format ${{ steps.module.outputs.name }}
42+ run : uv run -m ruff format ${{ steps.module.outputs.name }}
4343
4444 - name : Run Tests
45- run : uv pip run pytest tests --cov=${{ steps.module.outputs.name }} --cov-report=term-missing --cov-report=xml
45+ run : uv run -m pytest tests --cov=${{ steps.module.outputs.name }} --cov-report=term-missing --cov-report=xml
4646
4747 - name : Run MyPy
48- run : uv pip run mypy ${{ steps.module.outputs.name }}
48+ run : uv run -m mypy ${{ steps.module.outputs.name }}
4949
5050 - name : Upload coverage to Codecov
5151 uses : codecov/codecov-action@v3
You can’t perform that action at this time.
0 commit comments