Skip to content

Fixed bug in Github action #14

Fixed bug in Github action

Fixed bug in Github action #14

Workflow file for this run

---
name: RSpec
on:
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automaticallyz
- name: Test
run: bundle exec rspec -f j -o tmp/rspec_results.json -f p
- name: RSpec Report
uses: SonicGarden/rspec-report-action@v5
with:
json-path: tmp/rspec_results.json
if: always()