Skip to content

Commit 2e345f2

Browse files
committed
fix gh action
1 parent d464399 commit 2e345f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)