Skip to content

Update tested Ruby versions to 3.1-3.4 #25

Update tested Ruby versions to 3.1-3.4

Update tested Ruby versions to 3.1-3.4 #25

Workflow file for this run

name: CI
on: [push,pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
- '3.2'
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Rubocop
run: bundle exec rubocop
- name: RSpec
run: bundle exec rspec