Skip to content

Merge pull request #220 from tknzk/modified_email #504

Merge pull request #220 from tknzk/modified_email

Merge pull request #220 from tknzk/modified_email #504

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
# https://hub.docker.com/r/rubylang/ruby
- '3.0-dev-focal'
- '3.1-dev-focal'
- '3.2-dev-focal'
container:
image: rubylang/ruby:${{ matrix.ruby }}
steps:
- uses: actions/checkout@master
- name: Build and test
run: |
gem install bundler -v 2.4.20 --force
bundle install
bundle exec rubocop
bundle exec rake