Skip to content

WIP

WIP #91

Workflow file for this run

name: RSpec
on: [push]
jobs:
RSpec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2', 'head']
env:
BUNDLE_WITHOUT: typing
steps:
- uses: actions/checkout@v4
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: false
- name: bundle install
run: BUNDLE_WITHOUT=typing bundle install
- name: Run RSpec
run: bundle exec rspec