Skip to content

Version 0.4.0

Version 0.4.0 #30

Workflow file for this run

name: CI
on: push
jobs:
rspec:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} RSpec
strategy:
matrix:
ruby:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle exec rspec
rubocop:
runs-on: ubuntu-latest
name: RuboCop
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: '3.2'
- run: bundle exec rubocop