Sha256: 39e4e77974c6d958deafed757110b9d5851592a5aa80a9a8fe49e854f9bd70bb

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

name: tests

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.5, 2.6, 2.7, 3.0, head]
        rails: [4.2.11.3, 5.0.7.2, 5.1.7, 5.2.4.4, 6.0.3.4, 6.1.0]
        exclude:
          # Ruby 3.0 and Rails 5 do not get along together.
          - ruby: 3.0
            rails: 5.0.7.2
          - ruby: 3.0
            rails: 5.1.7
          - ruby: 3.0
            rails: 5.2.4.4
          - ruby: head
            rails: 5.0.7.2
          - ruby: head
            rails: 5.1.7
          - ruby: head
            rails: 5.2.4.4
    continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
    env:
      RAILS_VERSION: ${{ matrix.rails }}
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: "Install dependencies (rails: ${{matrix.rails}})"
        run: bundle install
      - name: Run tests
        run: bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pwned-2.3.0 .github/workflows/tests.yml
pwned-2.2.0 .github/workflows/tests.yml