Merge pull request #220 from tknzk/modified_email #504
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |