Add conditional upload step for test results in workflow
Some checks failed
Build Simulation and Test / Run All Tests (push) Failing after 26s

This commit is contained in:
Sam 2025-05-31 20:15:46 -05:00
parent 9ecbab5371
commit b5a3d6348f

View File

@ -31,3 +31,9 @@ jobs:
name: pytest-results name: pytest-results
path: pytest-results.xml path: pytest-results.xml
retention-days: 5 retention-days: 5
- uses: actions/upload-artifact@v4 # upload test results
if: ${{ !cancelled() }} # run this step even if previous step failed
with:
name: pytest-results
path: pytest-results.xml