Skip to content

first commit

first commit #1

Workflow file for this run

name: Run RSpec
on:
push:
branches: ['master']
pull_request:
workflow_dispatch:
jobs:
rspec:
runs-on: ubuntu-latest
matrix:

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Run RSpec

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 14, Col: 9): Unexpected value 'matrix'
ruby: [ 3.3 ]
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rspec
run: bundle exec rake spec