diff --git a/actions/uv/build/action.yml b/actions/uv/build/action.yml index a32d52c..14ab528 100644 --- a/actions/uv/build/action.yml +++ b/actions/uv/build/action.yml @@ -35,6 +35,11 @@ runs: with: python-version: "${{ inputs.python-version || '3.11' }}" + - name: Install uv + shell: bash + run: | + pip install uv + - name: Change version in pyproject.toml shell: bash run: | diff --git a/actions/uv/coverage/action.yml b/actions/uv/coverage/action.yml index 321e0b9..c8b7ca7 100644 --- a/actions/uv/coverage/action.yml +++ b/actions/uv/coverage/action.yml @@ -32,13 +32,13 @@ runs: - name: Test on Linux shell: bash run: | - uv pip install --no-cache-dir \ + pip install --no-cache-dir \ pytest \ pytest-cov \ pytest-html \ pytest-random-order - uv run pytest --cov=${{ inputs.source-folder || 'cvx' }} --random-order --verbose \ + pytest --cov=${{ inputs.source-folder || 'cvx' }} --random-order --verbose \ --html=artifacts/tests/html-report/report.html \ --cov-report term \ --cov-report xml:artifacts/tests/coverage/coverage.xml \