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 #2

Workflow file for this run

---
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
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