Skip to content

Commit 0e35822

Browse files
author
Nathan Gillett
committed
ci: clarify python release dependency install
Signed-off-by: Nathan Gillett <nathan@intentproof.io>
1 parent 3533b01 commit 0e35822

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release-signing-dry-run.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@ jobs:
3333
- name: Install dependencies
3434
run: |
3535
python -m pip install --upgrade build
36-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
37-
if [ -f pyproject.toml ]; then pip install -e .; fi
36+
if [ -f pyproject.toml ]; then
37+
pip install -e .
38+
elif [ -f requirements.txt ]; then
39+
pip install -r requirements.txt
40+
fi
3841
3942
- name: Run tests
4043
run: python -m unittest discover -s tests -v

0 commit comments

Comments
 (0)