diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index ee2b803..db124bc 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -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: