We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475d49a commit a9177daCopy full SHA for a9177da
1 file changed
.github/workflows/validate-code.yaml
@@ -83,13 +83,12 @@ jobs:
83
python-version: ${{ matrix.python-version }}
84
- name: install uv
85
uses: astral-sh/setup-uv@v7
86
+ - name: install dependencies
87
with:
88
- - name: install dependencies
89
- env:
90
- UV_SYSTEM_PYTHON: 1
91
run: |
92
- uv sync --locked --all-extras --dev
+ uv export --format=requirements.txt --all-extras --dev --group=dev > requirements.txt
+ pip install -r requirements.txt
93
# https://github.com/marketplace/actions/run-pytest
94
- name: perform unit tests (Python ${{ matrix.python-version }})
95
env:
0 commit comments