Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ jobs:
SMTP_USERNAME: ${{ secrets.SMTP_USERNAME }}
SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }}

- name: Run tests
run: bundle exec rspec
- name: Run tests and publish results
run: bundle exec rspec --format progress --format json --out tmp/rspec_results.json
env:
RAILS_ENV: test
# AWS credentials
Expand All @@ -85,3 +85,10 @@ jobs:
SMTP_USERNAME: ${{ secrets.SMTP_USERNAME }}
SMTP_PASSWORD: ${{ secrets.SMTP_PASSWORD }}
CI: "true"

- name: Publish test results
uses: actions/upload-artifact@v4
if: always()
with:
name: rspec-results
path: tmp/rspec_results.json
2 changes: 1 addition & 1 deletion .github/workflows/sanity-check-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ jobs:
publish_dir: .
publish_files: coverage_badge.svg
destination_dir: badges/main
keep_files: true
keep_files: true
Loading