Try to fix wheel artifact transfer
All checks were successful
CI / Build (push) Successful in 1m33s
CI / Python tests (push) Successful in 39s

This commit is contained in:
Michael Bradley 2025-02-23 09:11:28 -05:00
parent ead4d5549c
commit 4b3a45463e
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -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: