Skip to content

Commit 0274f85

Browse files
committed
fix(ci): use uv to run commands
1 parent f8b2ad2 commit 0274f85

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
uv sync --group ci
3434
- name: Lint with flake8
3535
run: |
36-
flake8 pycasx
36+
uv run flake8 src/pycasx

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
uv sync --group ci
3131
- name: Analysing the code with pylint
3232
run: |
33-
pylint --output-format=text pycasx
33+
uv run pylint --output-format=text src/pycasx

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
uv sync --group tests
3737
- name: Test with pytest
3838
run: |
39-
pytest
39+
uv run pytest

0 commit comments

Comments
 (0)