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:
58
58
run : poetry install --with=test,coverage,lint
59
59
60
60
- name : Lint with ruff check .
61
- run : poetry run ruff check .
61
+ run : uv run ruff check .
62
62
63
63
- name : Format with ruff
64
- run : poetry run ruff format . --check
64
+ run : uv run ruff format . --check
65
65
66
66
- name : Lint with mypy
67
- run : poetry run mypy .
67
+ run : uv run mypy .
68
68
69
69
- name : Print python versions
70
70
run : |
71
71
python -V
72
- poetry run python -V
72
+ uv run python -V
73
73
74
74
- name : Test with pytest
75
75
continue-on-error : ${{ matrix.tmux-version == 'master' }}
78
78
export PATH=$HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin:$PATH
79
79
ls $HOME/tmux-builds/tmux-${{ matrix.tmux-version }}/bin
80
80
tmux -V
81
- poetry run py.test --cov=./ --cov-report=xml
81
+ uv run py.test --cov=./ --cov-report=xml
82
82
83
83
- uses : codecov/codecov-action@v5
84
84
with :
You can’t perform that action at this time.
0 commit comments