Skip to content

Commit 0db7bd3

Browse files
committed
!squash more
1 parent 90b4a9d commit 0db7bd3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,18 @@ jobs:
5858
run: poetry install --with=test,coverage,lint
5959

6060
- name: Lint with ruff check .
61-
run: poetry run ruff check .
61+
run: uv run ruff check .
6262

6363
- name: Format with ruff
64-
run: poetry run ruff format . --check
64+
run: uv run ruff format . --check
6565

6666
- name: Lint with mypy
67-
run: poetry run mypy .
67+
run: uv run mypy .
6868

6969
- name: Print python versions
7070
run: |
7171
python -V
72-
poetry run python -V
72+
uv run python -V
7373
7474
- name: Test with pytest
7575
continue-on-error: ${{ matrix.tmux-version == 'master' }}
@@ -78,7 +78,7 @@ jobs:
7878
export PATH=$HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin:$PATH
7979
ls $HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin
8080
tmux -V
81-
poetry run py.test --cov=./ --cov-report=xml
81+
uv run py.test --cov=./ --cov-report=xml
8282
8383
- uses: codecov/codecov-action@v5
8484
with:

0 commit comments

Comments
 (0)