Sha256: 03be9204f4dfac115c5ad89abd3b32e8bc1852b0ac9e8061d1ec1acd3e70a61c

Contents?: true

Size: 1.89 KB

Versions: 1

Compression:

Stored size: 1.89 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: build

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.0
          - 2.7
          - 2.6
          - 2.5
        gemfile:
          # Cucumber 3.2+
          - Gemfile-rails.4.2.x
          - Gemfile-rails.5.0.x
          - Gemfile-rails.5.1.x
          - Gemfile-rails.5.2.x
          - Gemfile-rails.6.0.x-cukes-3
          - Gemfile-rails.6.1.x-cukes-3
          # Cucumber 4.1+
          - Gemfile-rails.5.2.x-cukes-4
          - Gemfile-rails.6.0.x-cukes-4
          # Cucumber 5.3+
          - Gemfile-rails.5.2.x-cukes-5
          - Gemfile-rails.6.0.x-cukes-5
          - Gemfile-rails.6.1.x-cukes-5
          # Cucumber 6
          - Gemfile-rails.6.0.x-cukes-6
          - Gemfile-rails.6.1.x-cukes-6
          # Cucumber 7
          - Gemfile-rails.6.0.x-cukes-7
          - Gemfile-rails.6.1.x-cukes-7
          # Edge
          - Gemfile-rails.edge
        exclude:
        # Rails edge is now 7.x and requires ruby 2.7
        - gemfile: Gemfile-rails.edge
          ruby: 2.6
        - gemfile: Gemfile-rails.edge
          ruby: 2.5
        - gemfile: Gemfile-rails.4.2.x
          ruby: 2.7
        - gemfile: Gemfile-rails.4.2.x
          ruby: 3.0

    env:
      BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - run: bundle exec rake

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pickle-0.6.2 .github/workflows/build.yml