Skip to content

Automatically inject has_secure_password into the Model if needed (#25) #62

Automatically inject has_secure_password into the Model if needed (#25)

Automatically inject has_secure_password into the Model if needed (#25) #62

Workflow file for this run

name: Tests
on: push
jobs:
rspec:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.5, 2.6, 2.7, 3.0]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: cd spec/dummy && bundle install
- run: cd spec/dummy && bundle exec rails db:create db:migrate
env:
RAILS_ENV: test
- run: bundle exec rspec