Skip to content

Bump check-spelling/check-spelling from 0.0.25 to 0.0.26 #110

Bump check-spelling/check-spelling from 0.0.25 to 0.0.26

Bump check-spelling/check-spelling from 0.0.25 to 0.0.26 #110

Workflow file for this run

---
name: Unit Testing
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
rspec:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up Ruby
uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1.299.0
with:
ruby-version: '3.1'
bundler-cache: true
- name: Run RSpec
run: bundle exec rspec -f j -o tmp/rspec_results.json -f p
- name: RSpec Report
uses: SonicGarden/rspec-report-action@1db4b15383ec30ec6ecfc9e7f92488647f7900bd # v6.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
json-path: tmp/rspec_results.json
if: always()