Skip to content

✅ GitHub actions spec runners #1

✅ GitHub actions spec runners

✅ GitHub actions spec runners #1

Workflow file for this run

name: RSpec
on: [push, pull_request]
permisions:

Check failure on line 5 in .github/workflows/rspec.yml

View workflow run for this annotation

GitHub Actions / RSpec

Invalid workflow file

The workflow is not valid. .github/workflows/rspec.yml (Line: 5, Col: 1): Unexpected value 'permisions'
content: read
jobs:
App-Specs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Run top-level specs
run: bin/rubocop spec/
Component-Specs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Run top-level specs
run: bin/rubocop components/