Skip to content

Don't autoload ActionController::Base (wait for Rails to load) #15

Don't autoload ActionController::Base (wait for Rails to load)

Don't autoload ActionController::Base (wait for Rails to load) #15

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
tests:
timeout-minutes: 30
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
- name: Setup
run: bundle exec rake --trace db:create db:schema:load db:seed
- name: Test
run: bundle exec rake spec