Skip to content

Allow passing options to generate the new application #13

Allow passing options to generate the new application

Allow passing options to generate the new application #13

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}
strategy:
matrix:
ruby: [ '3.2', '3.3', '3.4' ]
rails: [ '7.x', '8.x' ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Set Rails version environment variable
run: echo "RAILS_VERSION=${{ matrix.rails }}" >> $GITHUB_ENV
- name: Run the default task
run: bundle exec rake