Skip to content

Maintenance

Maintenance #21

Workflow file for this run

---
name: Test
"on": [pull_request]
jobs:
rspec:
name: RSpec
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- head
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: RSpec
run: |
bundle exec rspec