Skip to content

build(deps): bump actions/download-artifact from 6 to 7 #285

build(deps): bump actions/download-artifact from 6 to 7

build(deps): bump actions/download-artifact from 6 to 7 #285

Workflow file for this run

name: Run tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run tests
run: bundle exec rspec -f json -o /tmp/rspec_report.json -f progress
env:
SKIP_DOCS: true # TODO: remove once we can get docs artifacts in here easily
- name: Upload report artifact
uses: actions/upload-artifact@v5
if: always()
with:
name: test-report
path: /tmp/rspec_report.json
if-no-files-found: error