Sha256: 69a3d5969cedfaf37c0bea9c79ae3ce29a9d84c33ca7d0c6f7a9b70466240d47

Contents?: true

Size: 455 Bytes

Versions: 2

Compression:

Stored size: 455 Bytes

Contents

name: Run rspec
on:
  push:
  pull_request:
    branches: [ master ]
jobs:
  build:
    runs-on: ubuntu-18.04
    strategy:
      fail-fast: false
      matrix:
        ruby: [ 2.4, 2.5, 2.6 ]
    name: rspec with ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
          bundler: 1

      - run: bundle exec rspec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fix-db-schema-conflicts-3.1.1 .github/workflows/rspec.yml
fix-db-schema-conflicts-3.1.0 .github/workflows/rspec.yml