Sha256: 19b04d542c2844aecf299588ff81a37319f71a9178cafefca440c44c6730a35a

Contents?: true

Size: 1 KB

Versions: 14

Compression:

Stored size: 1 KB

Contents

name: Ruby specs

on: [push, pull_request]

jobs:
  test:
    name: Ruby specs
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest]
        ruby: ['2.6', '2.7', '3.0']
        gemfile:
          - gemfiles/Gemfile-rails.5.2.x
          - gemfiles/Gemfile-rails.6.0.x
          - gemfiles/Gemfile-rails.6.1.x
          - gemfiles/Gemfile-rails.7.0.x
          - 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
          - ruby: 3.0
            os: ubuntu-latest
            gemfile: gemfiles/Gemfile-rails.5.2.x

    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}

    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: Ruby specs
        run: bundle exec rake test

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
shakapacker-6.5.5 .github/workflows/ruby.yml
shakapacker-6.5.4 .github/workflows/ruby.yml
shakapacker-6.5.3 .github/workflows/ruby.yml
shakapacker-6.5.2 .github/workflows/ruby.yml
shakapacker-6.5.1 .github/workflows/ruby.yml
shakapacker-6.5.0 .github/workflows/ruby.yml
shakapacker-6.4.1 .github/workflows/ruby.yml
shakapacker-6.4.0 .github/workflows/ruby.yml
shakapacker-6.3.0 .github/workflows/ruby.yml
shakapacker-6.3.0.pre.rc.1 .github/workflows/ruby.yml
shakapacker-6.2.1 .github/workflows/ruby.yml
shakapacker-6.2.0 .github/workflows/ruby.yml
shakapacker-6.1.1 .github/workflows/ruby.yml
shakapacker-6.1.0 .github/workflows/ruby.yml