Skip to content

Commit

Permalink
Merge pull request #45 from ahasunos/patch-fix-coverage-upload
Browse files Browse the repository at this point in the history
ci: fix gh action to upload coverage report
  • Loading branch information
ahasunos authored Oct 25, 2024
2 parents ea524af + 340d66b commit 4b46bd6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ jobs:
- name: Run tests
run: bundle exec rspec

# - name: Upload coverage report
# uses: actions/upload-artifact@v4
# with:
# name: coverage-report
# path: coverage/
- name: Upload coverage report
if: matrix.os == 'ubuntu-latest' && matrix.ruby-version == '3.1'
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/

0 comments on commit 4b46bd6

Please sign in to comment.