Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Add Tests workflow

Add Tests workflow #1

Workflow file for this run

---
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail_fast: false

Check failure on line 10 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 10, Col: 7): Unexpected value 'fail_fast'
matrix:
ruby-version: ['3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- name: RSpec
run: bundle exec rspec