Skip to content

Commit

Permalink
Merge coverage data.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns committed Sep 12, 2024
1 parent b8bf0f8 commit 07c946c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}-${{ matrix.os }}
path: ".coverage*"
if-no-files-found: ignore
include-hidden-files: true


coverage:
needs:
- tests
Expand All @@ -73,6 +74,12 @@ jobs:
- name: Install coverage
run: python -m pip install --upgrade coverage[toml]

- name: Merge coverage data
uses: actions/upload-artifact/merge@v4
with:
name: coverage-data
pattern: coverage-data-*

- name: Download coverage data
uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 07c946c

Please sign in to comment.