Skip to content

Maintenance

Maintenance #15

Workflow file for this run

---
name: Test
"on": [pull_request]
jobs:
rspec:
name: RSpec
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.7.x
- 3.0.x
- 3.1.x
- 3.2.x
- 3.3.x
- 3.4.x
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: |
gem install bundler --no-document
bundle install
- name: RSpec
run: |
rspec