Skip to content

Commit

Permalink
workflows: simplify artifact download, update wheel path
Browse files Browse the repository at this point in the history
  • Loading branch information
suvayu committed Jul 11, 2024
1 parent 18fc10e commit f24c9b7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ jobs:
uses: actions/checkout@v4
- name: Download all wheels
uses: actions/download-artifact@v4
with:
name: dist
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand All @@ -56,7 +54,7 @@ jobs:
# pytest-cov needed as config includes --cov
- name: Install PySE
run: |
pip install *.whl
pip install dist/*.whl
- name: Remove source, run tests on installed package
run: |
rm -rf sourcefinder
Expand Down

0 comments on commit f24c9b7

Please sign in to comment.