Sha256: 978546422ea703f6fb044bb4361b7f51cc4e98e6369d87ac8eb620d1ff4df918

Contents?: true

Size: 1.02 KB

Versions: 5

Compression:

Stored size: 1.02 KB

Contents

name: Generator specs

on: [push]

jobs:
  test:
    name: Generator specs
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest]
        ruby: ['2.6', '2.7', '3.0']
        gemfile:
          - gemfiles/Gemfile-rails.6.0.x
          - gemfiles/Gemfile-rails.6.1.x
          - gemfiles/Gemfile-rails.7.0.x
          # Uncomment the following line only to ensure compatibility with the
          # upcomming Rails versions, maybe before a release.
          #- gemfiles/Gemfile-rails-edge
        exclude:
          - ruby: 2.6
            os: ubuntu-latest
            gemfile: gemfiles/Gemfile-rails.7.0.x
          - ruby: 2.6
            os: ubuntu-latest
            gemfile: gemfiles/Gemfile-rails-edge
    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}

    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Install dependencies
        run: bundle install
      - run: bundle exec rake run_spec:generator

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
shakapacker-7.0.2 .github/workflows/generator.yml
shakapacker-7.0.1 .github/workflows/generator.yml
shakapacker-7.0.0 .github/workflows/generator.yml
shakapacker-7.0.0.rc.2 .github/workflows/generator.yml
shakapacker-7.0.0.rc.1 .github/workflows/generator.yml