From e00edd8137f3807a0db75076a6661f7a8b8d741f Mon Sep 17 00:00:00 2001 From: Sam <61994039+fourthDimensional@users.noreply.github.com> Date: Sat, 31 May 2025 19:56:11 -0500 Subject: [PATCH] Update test workflow to upload results using Gitea action --- .gitea/workflows/run_tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/run_tests.yml b/.gitea/workflows/run_tests.yml index d469cbd..47803e0 100644 --- a/.gitea/workflows/run_tests.yml +++ b/.gitea/workflows/run_tests.yml @@ -29,8 +29,9 @@ jobs: - name: Run tests run: uv run pytest tests --junit-xml=pytest-results.xml - - name: Publish Test Results + - name: Upload test results if: always() - uses: actions/upload-test-results@v2 + uses: gitea.com/actions/upload-artifact@v1 with: - files: pytest-results.xml \ No newline at end of file + name: pytest-results + path: pytest-results.xml \ No newline at end of file