Skip to content

Commit 8fedd05

Browse files
committed
Fix missing pdm installs in release workflow
Signed-off-by: Samuel Monson <[email protected]>
1 parent 1741526 commit 8fedd05

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ jobs:
120120
with:
121121
python-version: ${{ matrix.python }}
122122
- name: Install dependencies
123-
run: pip install tox tox-pdm
123+
run: |
124+
curl -sSL https://pdm-project.org/install-pdm.py | python3 -
125+
pip install tox tox-pdm
124126
- name: Run integration tests
125127
run: tox -e test-integration
126128

@@ -155,7 +157,9 @@ jobs:
155157
with:
156158
python-version: ${{ matrix.python }}
157159
- name: Install dependencies
158-
run: pip install tox tox-pdm
160+
run: |
161+
curl -sSL https://pdm-project.org/install-pdm.py | python3 -
162+
pip install tox tox-pdm
159163
- name: Run end-to-end tests
160164
run: tox -e test-e2e
161165

0 commit comments

Comments
 (0)