Validate ActionMailer config #356
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [2.7, '3.0', 3.1, 3.2, 3.3, jruby-9.4] | |
gemfile: [rails-7.0.gemfile, rails-7.1.gemfile, rails-main.gemfile] | |
exclude: | |
# Rails 7.1 dropped support for older rubygems | |
- gemfile: rails-main.gemfile | |
ruby: 2.7 | |
- gemfile: rails-main.gemfile | |
ruby: 3.0 | |
steps: | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- uses: actions/checkout@v3 | |
- name: Install gems | |
run: bundle install --gemfile=gemfiles/${{ matrix.gemfile }} | |
- name: Test | |
run: BUNDLE_GEMFILE=gemfiles/${{ matrix.gemfile }} bundle exec rspec | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Ruby 3.3 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
- uses: actions/checkout@v2 | |
- name: Install gems | |
run: bundle install | |
- name: Rubocop | |
run: bundle exec rubocop -E -S | |
test-sample-app: | |
runs-on: ubuntu-latest | |
services: | |
dynamodb: | |
image: amazon/dynamodb-local:latest | |
ports: | |
- 8000:8000 | |
env: | |
AWS_REGION: us-east-1 | |
AWS_ACCESS_KEY_ID: dummy | |
AWS_SECRET_ACCESS_KEY: dummy | |
AWS_ENDPOINT_URL: http://localhost:8000 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
working-directory: ${{ github.workspace }}/sample_app | |
- name: Create table | |
run: cd ${{ github.workspace }}/sample_app && bin/rails runner Aws::SessionStore::DynamoDB::Table.create_table | |
- name: Insert dummy manifest.json | |
run: | | |
mkdir -p ${{ github.workspace }}/sample_app/public/packs-test | |
echo "{\"application.js\":\"/packs-test/js/application-dummy.js\"}" >> ${{ github.workspace }}/sample_app/public/packs-test/manifest.json | |
- name: Test | |
run: bundle exec rake test | |
working-directory: ${{ github.workspace }}/sample_app |