Skip to content

Commit

Permalink
Upload full coverage results artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuscruz committed Dec 24, 2024
1 parent ea5a339 commit c6e6aee
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Upload Coverage Report
uses: actions/upload-artifact@v4
with:
name: ${{ env.RUN_UNIQUE_ID }}_artifact_${{ matrix.ruby }}_${{ matrix.rails }}
name: coverage_ruby_${{ matrix.ruby }}_rails_${{ matrix.rails }}
path: coverage/
include-hidden-files: true
if-no-files-found: error
Expand Down Expand Up @@ -180,6 +180,14 @@ jobs:
- name: Collate Partial Coverage Resultsets
run: bundle exec rake coverage:report

- name: Upload Full Coverage Report
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/
include-hidden-files: true
if-no-files-found: error

- uses: joshmfrankel/simplecov-check-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit c6e6aee

Please sign in to comment.