Sha256: 39513c611827681748be6950eb43bd87691c0113ca1becca6f8a6d61a6fff460

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

name: CI

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1]
        gemfile: ['rails50', 'rails51', 'rails52', 'rails60', 'rails61', 'rails70']
        exclude:
          - ruby: 2.3
            gemfile: rails60
          - ruby: 2.3
            gemfile: rails61
          - ruby: 2.3
            gemfile: rails70
          - ruby: 2.4
            gemfile: rails60
          - ruby: 2.4
            gemfile: rails61
          - ruby: 2.4
            gemfile: rails70
          - ruby: 2.5
            gemfile: rails70
          - ruby: 2.6
            gemfile: rails70
          - ruby: 3.0
            gemfile: rails50
          - ruby: 3.0
            gemfile: rails51
          - ruby: 3.0
            gemfile: rails52
          - ruby: 3.1
            gemfile: rails50
          - ruby: 3.1
            gemfile: rails51
          - ruby: 3.1
            gemfile: rails52

    name: ruby ${{ matrix.ruby }}, ${{ matrix.gemfile }}

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

    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Prepare test
      run: |
        cd spec/dummy
        BUNDLE_GEMFILE=../../${{ env.BUNDLE_GEMFILE }} RAILS_ENV=test bundle exec rake db:create db:migrate db:seed
        cd ../..
    - name: Run test
      run: |
        DEBUG=1 bundle exec rspec

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
respond_for_helper-1.1.1 .github/workflows/ci.yml
respond_for_helper-1.1.0 .github/workflows/ci.yml
respond_for_helper-1.0.2 .github/workflows/ci.yml
ii_finder-2.2.0 .github/workflows/ci.yml