Skip to content

Set to Rails 6.1.7.6 #18

Set to Rails 6.1.7.6

Set to Rails 6.1.7.6 #18

Workflow file for this run

name: Ruby
on: push
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
ruby-version: ['2.4.0', '2.5.1', '2.6.6', '2.7.2']
steps:
# Pin to this commit: v2
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- name: Set up Ruby
# Lock to this commit, v1.82.0
uses: ruby/setup-ruby@5e4f0a10bfc39c97cd5358121291e27e5d97e09b
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake spec