Skip to content

Commit 77408f2

Browse files
fix(ci): quote pip binary-only command
1 parent 6bfafe4 commit 77408f2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
python-version: '3.14'
4242

4343
- name: Install dependencies
44-
run: pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'
44+
run: |
45+
pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'
4546
4647
- name: Run tests
4748
env:

0 commit comments

Comments
 (0)