Try to fix wheel artifact transfer
This commit is contained in:
parent
ead4d5549c
commit
4b3a45463e
1 changed files with 7 additions and 4 deletions
|
@ -31,7 +31,7 @@ jobs:
|
|||
# run: cargo clippy -- -D warnings
|
||||
|
||||
build:
|
||||
name: Build (and tests, for now)
|
||||
name: Build
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout the code
|
||||
|
@ -55,7 +55,7 @@ jobs:
|
|||
- name: Save built wheel
|
||||
uses: forgejo/upload-artifact@v4
|
||||
with:
|
||||
name: pyority_queue.whl
|
||||
name: wheels
|
||||
path: target/wheels/*.whl
|
||||
compression-level: 0
|
||||
|
||||
|
@ -74,11 +74,14 @@ jobs:
|
|||
- name: Retrieve built wheel
|
||||
uses: forgejo/download-artifact@v4
|
||||
- name: Install built wheel
|
||||
run: pip install pyority_queue.whl
|
||||
run: |
|
||||
ls -la
|
||||
ls -la wheels
|
||||
pip install wheels/*.whl
|
||||
- name: Run Python tests
|
||||
run: pytest tests/*.py
|
||||
|
||||
rust-test:
|
||||
# rust-test:
|
||||
# name: Rust tests
|
||||
# runs-on: ubuntu-22.04
|
||||
# steps:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue