Skip to content

Commit 5e02acd

Browse files
committed
fix github workflow issue
1 parent 9e2a023 commit 5e02acd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-workflow.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,16 @@ jobs:
7272
runs-on: ubuntu-latest
7373
needs: upload-test-pypi
7474
steps:
75+
- name: Checkout
76+
uses: actions/checkout@v4
7577
- name: Set up Python ${{ env.PRIMARY_PYTHON_VERSION }}
7678
uses: actions/setup-python@v3
7779
with:
7880
python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
7981
- name: Install dependencies
8082
run: |
8183
python -m pip install --upgrade pip
82-
pip install pytest ${{ env.PYPI_PACKAGE_NAME }} --extra-index-url https://test.pypi.org/simple/
84+
pip install "${{ env.PYPI_PACKAGE_NAME }}[dev]" --extra-index-url https://test.pypi.org/simple/
8385
- name: Test with pytest
8486
run: |
8587
pytest

0 commit comments

Comments
 (0)