Skip to content

Commit

Permalink
CI: fix package install
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Sep 7, 2024
1 parent 1798b77 commit 3c99950
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,16 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Build and install fastcore
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
command: develop
args: --release
target: ${{ matrix.target }}
args: --release --out dist
sccache: 'true'
manylinux: auto
working-directory: py
- name: Install package
run: pip install py/dist/*.whl
- name: Run tests
run: |
pip install pytest
Expand Down

0 comments on commit 3c99950

Please sign in to comment.