We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be2ed18 commit 2a9798dCopy full SHA for 2a9798d
1 file changed
.github/workflows/basemap-for-windows.yml
@@ -269,16 +269,16 @@ jobs:
269
name: Test package
270
run: |
271
cd ${{ env.PKGDIR }}
272
- $env:COVERAGE_FILE = ".coverage.${{ matrix.python-version }}"
+ $env:COVERAGE_FILE = ".coverage.${{ matrix.arch }}.${{ matrix.python-version }}"
273
python -m pytest `
274
--cov="mpl_toolkits.basemap" --cov-report=term `
275
--ignore=dist --ignore=build
276
-
277
name: Upload test artifacts
278
- uses: actions/upload-artifact@v1
+ uses: actions/upload-artifact@v4
279
with:
280
- name: test
281
- path: ${{ env.PKGDIR }}/.coverage.${{ matrix.python-version }}
+ name: artifacts-test-${{ matrix.arch }}-${{ matrix.python-version }}
+ path: ${{ env.PKGDIR }}/.coverage.${{ matrix.arch }}.${{ matrix.python-version }}
282
283
upload:
284
strategy:
0 commit comments