Skip to content

Commit

Permalink
use github matrix to allow parallel runs
Browse files Browse the repository at this point in the history
  • Loading branch information
getzze committed Jul 31, 2024
1 parent f80a7b7 commit 21f9a54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: hatch -v run ${{ matrix.env.name }}:${{ matrix.env.target }}

test:
name: test ${{ matrix.py }}
name: test py${{ matrix.python-version }} - seaborn-${{ matrix.seaborn-version }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage
name: coverage-${{ matrix.python-version }}-${{ matrix.seaborn-version }}
path: "report/.coverage.*"

coverage:
Expand All @@ -114,7 +114,7 @@ jobs:
- name: Download coverage data
uses: actions/download-artifact@v4
with:
name: coverage
name: coverage-*
path: report
merge-multiple: true
- name: Combine and report coverage
Expand Down

0 comments on commit 21f9a54

Please sign in to comment.