Skip to content

Commit

Permalink
Merge pull request #37 from ARKlab/renovate/major-4-github-artifact-a…
Browse files Browse the repository at this point in the history
…ctions

chore(deps): update actions/upload-artifact action to v4
  • Loading branch information
AndreaCuneo authored Sep 2, 2024
2 parents d6b6c3a + a11b027 commit a77534e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:

- name: Test Pytest
run: |
pytest --junitxml=junit/test-results-${{ matrix.python-version }}.xml
pytest --junitxml=junit/test-results-${{ matrix.python-version }}-${{ matrix.os }}.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
name: pytest-results-${{ matrix.python-version }}-${{ matrix.os }}
path: junit/test-results-${{ matrix.python-version }}-${{ matrix.os }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}

Expand Down

0 comments on commit a77534e

Please sign in to comment.