Skip to content

Merge pull request #6 from malomalo/ci #5

Merge pull request #6 from malomalo/ci

Merge pull request #6 from malomalo/ci #5

Workflow file for this run

name: CI
on:
push:
pull_request:
types: [opened]
jobs:
sunstone:
name: Condenser/Rails Test
runs-on: ubuntu-22.04
strategy:
matrix:
rails-version:
- 6.1.7
- 7.0.8
- 7.1.2
ruby-version:
- 3.0
- 3.1
- 3.2
steps:
- uses: actions/checkout@v4
- run: |
echo 'gem "rails", "${{ matrix.rails-version }}"' >> Gemfile
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake test