Skip to content

Merge pull request #19 from gigorok/patch-1 #6

Merge pull request #19 from gigorok/patch-1

Merge pull request #19 from gigorok/patch-1 #6

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.5', '2.6', '2.7' ]
rails: [ '~> 5.0', '~> 6.0' ]
name: Tests with Ruby ${{ matrix.ruby }} Activemodel/Activesupport ${{ matrix.rails }}
env:
RAILS_VERSION: ${{ matrix.rails }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: |
gem install bundler
bundle install
bundle exec rake