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 d2ec95c commit 88a7810
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ jobs:
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: coverage-data-${{ matrix.coverage }}
path: coverage-data-${{ matrix.coverage }}
name: .coverage.${{ matrix.coverage }}
include-hidden-files: true
if-no-files-found: error

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

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

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

0 comments on commit 88a7810

Please sign in to comment.