Sha256: ae2c78a829da6ef1cc566cabb3300df2c707266951d5cbf45abf80231ae4fdd0

Contents?: true

Size: 713 Bytes

Versions: 1

Compression:

Stored size: 713 Bytes

Contents

name: CI
on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
        gemfile:
          - rails_7.1
          - rails_7.0
          - rails_6.1
          - rails_6.0
    runs-on: ubuntu-latest
    env:
      BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
    steps:
    - uses: actions/checkout@v4
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - run: bundle exec rake db:create db:schema:load test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trailblazer-rails-2.4.4 .github/workflows/ci.yml