Skip to content

tmp

tmp #1

Workflow file for this run

name: Tests
on: push
jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '2.3.x'
- '2.4.x'
- '2.5.x'
- '2.6.x'
rails:
- '5.0.7.2'
- '5.1.7'
- '5.2.3'
steps:
- name: Install system dependencies
run: sudo apt-get install -y libsqlite3-dev
- uses: actions/checkout@master
- name: Setup ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
architecture: 'x64'
- run: gem install bundler && bundle && bundle exec rake
env:
AR_TEST_VERSION: ${{ matrix.rails }}