Skip to content

Commit

Permalink
fix publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Aug 16, 2023
1 parent cb85cd7 commit e5983a7
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v3
with:
python-version: '3.9'

- run: |
python -m pip install --upgrade pip wheel
python -m pip install -e .
python setup.py sdist bdist_wheel
python -m pip install --upgrade pip build
python -m build .
- run: |
python -m venv test
./test/bin/activate
ls dist
python -m pip install $(echo dist/jacobi-*.whl)'[test]'
python -m pytest
Expand Down

0 comments on commit e5983a7

Please sign in to comment.