Skip to content

Merge pull request #14 from petergoldstein/feature/add_ruby_3_2_to_ci #39

Merge pull request #14 from petergoldstein/feature/add_ruby_3_2_to_ci

Merge pull request #14 from petergoldstein/feature/add_ruby_3_2_to_ci #39

Workflow file for this run

name: Ruby
on: push
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '2.7.6'
- '3.0.4'
- '3.1.2'
- '3.2.2'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Lint
run: bundle exec rubocop
- name: Test
run: bundle exec rspec