Sha256: 2a9e836e33f06b89e20df7d0d822369fb097561214b29d977ae625e327fad141

Contents?: true

Size: 769 Bytes

Versions: 12

Compression:

Stored size: 769 Bytes

Contents

---
name: Pipeline
on: [push]
jobs:
  tests:
    name: Unit Tests
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.5, 2.6, 2.7, '3.0', 3.1]
        gemfile:
        - Gemfile
        - gemfiles/rails_5.gemfile
        - gemfiles/rails_6.gemfile
        exclude:
        - gemfile: Gemfile
          ruby: 2.5
        - gemfile: gemfiles/rails_5.gemfile
          ruby: '3.0'
        - gemfile: gemfiles/rails_5.gemfile
          ruby: 3.1
    env:
      BUNDLE_GEMFILE: ${{ matrix.gemfile }}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler: 2.2.29
        bundler-cache: true
    - name: Unit tests
      run: bundle exec rspec

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
exception_handling-2.14.0 .github/workflows/pipeline.yml
exception_handling-2.14.0.pre.gk.1 .github/workflows/pipeline.yml
exception_handling-2.14.0.pre.gk.0 .github/workflows/pipeline.yml
exception_handling-2.13.0 .github/workflows/pipeline.yml
exception_handling-2.13.0.pre.dc.0 .github/workflows/pipeline.yml
exception_handling-2.12.0 .github/workflows/pipeline.yml
exception_handling-2.12.0.gfaza.1 .github/workflows/pipeline.yml
exception_handling-2.11.4.gfaza.1 .github/workflows/pipeline.yml
exception_handling-2.11.3 .github/workflows/pipeline.yml
exception_handling-2.11.2 .github/workflows/pipeline.yml
exception_handling-2.11.1 .github/workflows/pipeline.yml
exception_handling-2.11.0 .github/workflows/pipeline.yml