File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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' }}
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 :
You can’t perform that action at this time.
0 commit comments