Sha256: 88e078c1eff5d5a36b8c899c813bf27887a4f742bc24443d4d059711bd689280

Contents?: true

Size: 885 Bytes

Versions: 11

Compression:

Stored size: 885 Bytes

Contents

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
exception_handling-3.1.1 .github/workflows/pipeline.yml
exception_handling-3.1.1.pre.tstarck.1 .github/workflows/pipeline.yml
exception_handling-3.1.0 .github/workflows/pipeline.yml
exception_handling-3.1.0.pre.3 .github/workflows/pipeline.yml
exception_handling-3.0.1 .github/workflows/pipeline.yml
exception_handling-3.1.0.pre.2 .github/workflows/pipeline.yml
exception_handling-3.1.0.pre.tstarck.2 .github/workflows/pipeline.yml
exception_handling-3.1.0.pre.tstarck.1 .github/workflows/pipeline.yml
exception_handling-3.0.0 .github/workflows/pipeline.yml
exception_handling-3.0.0.pre.2 .github/workflows/pipeline.yml
exception_handling-2.17.0.pre.tstarck.1 .github/workflows/pipeline.yml