Sha256: 2256a2671ddd5ad5ab1ad7c44e3d359b5d1672529fe7c260ec5ccb4b70fd70ab

Contents?: true

Size: 1.27 KB

Versions: 9

Compression:

Stored size: 1.27 KB

Contents

name: Ruby specs

on: [push, pull_request]

jobs:
  test:
    name: Ruby specs
    runs-on: ${{ matrix.os }}
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' || matrix.experimental }}
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        ruby:
          - 2.7
          - "3.0"
        gemfile:
          - gemfiles/Gemfile-rails.5.2.x
          - gemfiles/Gemfile-rails.6.0.x
          - gemfiles/Gemfile-rails.6.1.x
        exclude:
          - ruby: 2.5
            gemfile: gemfiles/Gemfile-rails.6.1.x
          - ruby: "3.0"
            gemfile: gemfiles/Gemfile-rails.5.2.x
        experimental: [false]
        include:
          - ruby: 2.7
            os: ubuntu-latest
            gemfile: gemfiles/Gemfile-rails-edge
            experimental: true
          - ruby: "3.0"
            os: ubuntu-latest
            gemfile: gemfiles/Gemfile-rails-edge
            experimental: true

    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
    steps:
      - uses: actions/checkout@v2

      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true # Run "bundle install", and cache the result automatically.

      - name: Ruby specs
        run: bundle exec rake

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
shakapacker-6.1.0.beta.0 .github/workflows/ruby.yml
shakapacker-6.0.2 .github/workflows/ruby.yml
shakapacker-6.0.1 .github/workflows/ruby.yml
shakapacker-6.0.0 .github/workflows/ruby.yml
shakapacker-6.0.0.rc.14 .github/workflows/ruby.yml
shakapacker-6.0.0.rc.13 .github/workflows/ruby.yml
shakapacker-6.0.0.rc.12 .github/workflows/ruby.yml
shakapacker-6.0.0.rc.6 .github/workflows/ruby.yml
webpacker-6.0.0.rc.6 .github/workflows/ruby.yml