File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,16 @@ jobs:
5151 - name : Start Redis
5252 run : sudo service redis-server start
5353
54+ - name : Install uv
55+ run : curl -LsSf https://astral.sh/uv/install.sh | sh
56+ # Add uv to the PATH
57+ - run : echo "$HOME/.cargo/bin" >> $GITHUB_PATH
58+
5459 - name : Generate Report
5560 run : |
56- python3 -m venv venv
57- . venv/bin/activate
58- python -m pip install --upgrade pip
59- pip install -r requirements/dev.pip
60- ruff check . --exit-non-zero-on-fix
61- pytest tally_ho --doctest-modules --junitxml=coverage.xml --cov=tally_ho --cov-report=xml --cov-report=html
61+ uv pip sync requirements/dev.pip
62+ uv run ruff check . --exit-non-zero-on-fix
63+ uv run pytest tally_ho --doctest-modules --junitxml=coverage.xml --cov=tally_ho --cov-report=xml --cov-report=html
6264 coverage xml
6365 ls -al
6466 env :
You can’t perform that action at this time.
0 commit comments