Sha256: 1581528de47114aecab5059f0a04a34d9ef1674f1412845db583ee249a31f86c

Contents?: true

Size: 1.05 KB

Versions: 3

Compression:

Stored size: 1.05 KB

Contents

name: Build

on:
  push:
    branches:
    - master
  pull_request:

jobs:
  rspec:
    runs-on: ubuntu-latest
    env:
      BUNDLE_JOBS: 4
      BUNDLE_RETRY: 3
      CI: true
    strategy:
      fail-fast: false
      matrix:
        ruby: ["2.7"]
        gemfile: [
          "gemfiles/rails61.gemfile"
        ]
        fx: ["false"]
        include:
        - ruby: "3.0"
          fx: "false"
        - ruby: "2.7"
          fx: "false"
        - ruby: "2.6"
          fx: "false"
    steps:
    - uses: actions/checkout@v2
    - uses: actions/cache@v1
      with:
        path: /home/runner/bundle
        key: bundle-${{ matrix.ruby }}-${{ hashFiles('**/*.gemspec') }}
        restore-keys: |
          bundle-${{ matrix.ruby }}-
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Bundle install
      run: |
        bundle config path /home/runner/bundle
        bundle install
        bundle update
    - name: Run RSpec
      env:
        USE_FX: ${{ matrix.fx }}
      run: |
        bundle exec rspec -f d --force-color

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ped-0.2.1 .github/workflows/rspec.yml
ped-0.2.0 .github/workflows/rspec.yml
ped-0.1.0 .github/workflows/rspec.yml