Sha256: 6a44bf04a092eac1eaca05803dd001272ff8998951af34998555dc54f692033f

Contents?: true

Size: 946 Bytes

Versions: 1

Compression:

Stored size: 946 Bytes

Contents

name: Ruby CI
on: [push, pull_request]
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.6', '2.7', '3.0', 'ruby-head']
        gemfile: ['activesupport-4.2.x', 'activesupport-5.2.x', 'activesupport-6.0.x', 'activesupport-6.1.x', 'activesupport-head']
        exclude:
          - ruby: 2.6
            gemfile: activesupport-head
          - ruby: 2.7
            gemfile: activesupport-4.2.x
          - ruby: 3.0
            gemfile: activesupport-4.2.x
          - ruby: ruby-head
            gemfile: activesupport-4.2.x
    env:
      BUNDLE_GEMFILE: gemfiles/Gemfile.${{ matrix.gemfile }}
    name: Ruby ${{ matrix.ruby }} with ${{ matrix.gemfile }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dimelo_ccp_api-0.5.0 .github/workflows/ruby.yml