Skip to content

Commit

Permalink
Troubleshooting breaking changes in artifact upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Sep 12, 2024
1 parent 1dd32eb commit 3beed12
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Upload cached API test results
uses: actions/upload-artifact@v4
with:
name: cached-api-test-results
name: cached-api-test-results-${{matrix.python-version}}
path: tests/cached-api-test-results.xml

- name: Test Wolfram API
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Upload Wolfram API test results
uses: actions/upload-artifact@v4
with:
name: wolfram-api-test-results
name: wolfram-api-test-results-${{matrix.python-version}}
path: tests/wolfram-api-test-results.xml

- name: Test Alpha Vantage API
Expand All @@ -74,7 +74,7 @@ jobs:
- name: Upload Alpha Vantage API test results
uses: actions/upload-artifact@v4
with:
name: alphavantage-api-test-results
name: alphavantage-api-test-results-${{matrix.python-version}}
path: tests/alphavantage-api-test-results.xml

- name: Test OWM API
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Upload Open Weather Map API test results
uses: actions/upload-artifact@v4
with:
name: owm-api-test-results
name: owm-api-test-results-${{matrix.python-version}}
path: tests/owm-api-test-results.xml

- name: Test Map Maker API
Expand All @@ -94,7 +94,7 @@ jobs:
- name: Upload Map Maker API test results
uses: actions/upload-artifact@v4
with:
name: map-maker-api-test-results
name: map-maker-api-test-results-${{matrix.python-version}}
path: tests/map-maker-api-test-results.xml

- name: Test Generic API
Expand All @@ -103,5 +103,5 @@ jobs:
- name: Upload Generic API test results
uses: actions/upload-artifact@v4
with:
name: generic-controller-test-results
name: generic-controller-test-results-${{matrix.python-version}}
path: tests/generic-controller-test-results.xml

0 comments on commit 3beed12

Please sign in to comment.