From 88c4fa428ac7d0116937b3b4f5070ee8d16ca7f0 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 09:15:59 -0500 Subject: [PATCH] Remove action debug commands --- .forgejo/workflows/build.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index db124bc..07d5a6c 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -56,7 +56,7 @@ jobs: uses: forgejo/upload-artifact@v4 with: name: wheels - path: target/wheels/*.whl + path: target/wheels/*.whl # Should only match the one target built compression-level: 0 python-test: @@ -74,10 +74,7 @@ jobs: - name: Retrieve built wheel uses: forgejo/download-artifact@v4 - name: Install built wheel - run: | - ls -la - ls -la wheels - pip install wheels/*.whl + run: pip install wheels/*.whl # Should only match the one target built - name: Run Python tests run: pytest tests/*.py