Skip to content

Fix a typo. (#232)

Fix a typo. (#232) #40

Workflow file for this run

name: 🚂 Ruby on Rails
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rails-version: ['5.0', '5.1', '5.2', '6.0', '6.1', '7.0']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby & Rails
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
env:
ACTION_MAILER_VERSION: ${{ matrix.rails-version }}
- name: Run tests
run: bundle exec rspec
env:
ACTION_MAILER_VERSION: ${{ matrix.rails-version }}