Skip to content

Commit

Permalink
fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DylannCordel committed Sep 18, 2024
1 parent 88a7810 commit 3514b84
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: .coverage.${{ matrix.coverage }}
name: coverage-data-${{ matrix.coverage }}
path: .coverage.${{ matrix.coverage }}
include-hidden-files: true
if-no-files-found: error

Expand Down Expand Up @@ -113,14 +114,16 @@ jobs:
- name: Download coverage data
uses: actions/download-artifact@v4
with:
pattern: .coverage.*
pattern: coverage-data-*

# - name: Check files
# run: |
# ls -la

- name: Save PR number and combine coverage data
run: |
ls -la
ls -la coverage*
mkdir -p ./pr
coverage combine
coverage report -m --format="markdown" > ./pr/coverage.md
Expand Down

0 comments on commit 3514b84

Please sign in to comment.