Skip to content

v0.9.0

v0.9.0 #44

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: ruby${{ matrix.ruby }} rails${{ matrix.rails }} rake
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0']
rails: ['5.2', '6.0', '6.1', '7.0', '7.1']
exclude:
- ruby: '3.0'
rails: '5.2'
env:
BUNDLE_GEMFILE: gemfiles/rails${{ matrix.rails }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake