Skip to content

add additional ruby/rails versions for CI #3

add additional ruby/rails versions for CI

add additional ruby/rails versions for CI #3

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: test (ruby ${{ matrix.ruby }} / rails ${{ matrix.rails_version }})
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.1", "3.2"]
rails_version: ["7.0.8.4", "7.2.1.2"]
include:
- ruby-version: '3.1'
rails_version: "7.0.8.4"
- ruby-version: '3.2'
rails_version: "7.2.1.2"
env:
ENGINE_CART_RAILS_OPTIONS: "--skip-git --skip-listen --skip-spring --skip-keeps --skip-coffee --skip-test"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler: "latest"
- name: Install dependencies
run: bundle install
- name: Run linter and tests
run: bundle exec rake ci