Skip to content

Commit fbeb0e4

Browse files
committed
Checkout Code error in GitHub Checks
Update RSpec command to generate HTML report and adjust artifact upload path Signed-off-by: Rodrigo Nardi <[email protected]>
1 parent 7becb76 commit fbeb0e4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,16 @@ jobs:
9393
- name: Run specs
9494
run: |
9595
cp config_template.yml config.yml
96-
bundle exec rspec -f j -o tmp/rspec_results.json -f p
96+
bundle exec rspec \
97+
-f j -o tmp/rspec_results.json \
98+
-f h -o tmp/rspec_results.html
9799
98100
- name: Save coverage report
99101
uses: actions/upload-artifact@v4
100102
if: always()
101103
with:
102104
name: coverage-report
103-
path: tmp/rspec_results.json
105+
path: tmp/rspec_results.html
104106
if-no-files-found: warn
105107

106108
- name: RSpec Report

0 commit comments

Comments
 (0)