Skip to content

Commit

Permalink
Update GHA to use latest upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Sep 12, 2024
1 parent a90a14a commit 511c0a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
run: |
pytest tests/unit_tests.py --doctest-modules --junitxml=tests/unit-test-results.xml
- name: Upload Unit test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: unit-test-results
name: unit-test-results-${{ matrix.python-version }}
path: tests/unit-test-results.xml
- name: Test API Methods
run: |
pytest tests/api_method_tests.py --doctest-modules --junitxml=tests/api-method-test-results.xml
- name: Upload API Method test results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: api-method-test-results
name: api-method-test-results-${{ matrix.python-version }}
path: tests/api-method-test-results.xml

0 comments on commit 511c0a0

Please sign in to comment.