We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61981c3 commit b395453Copy full SHA for b395453
action.yml
@@ -100,11 +100,16 @@ runs:
100
cache: 'pip'
101
cache-dependency-path: '${{ steps.requirements_path.outputs.requirements_dir_prefix }}requirements/*.txt'
102
103
+ - name: Install uv (pip alternative)
104
+ # Docs: https://github.com/astral-sh/uv?tab=readme-ov-file#getting-started
105
+ run: pip install uv
106
+ shell: bash
107
+
108
- name: Install backend dependencies
109
run: |
- pip install -r requirements/ci.txt \
- --use-pep517 \
- --use-feature=no-binary-enable-wheel-cache
110
+ uv pip install \
111
+ --system \
112
+ -r requirements/ci.txt
113
shell: bash
114
working-directory: ${{ inputs.working-directory }}
115
0 commit comments