Sha256: 0e93ce0646bf6cce4ceafdb76c037105a1f00d6cd8bbc2d58a23ac20e82800cf

Contents?: true

Size: 510 Bytes

Versions: 2

Compression:

Stored size: 510 Bytes

Contents

name: CI
on:
  - push
  - pull_request
jobs:
  test:
    name: Test (Ruby ${{ matrix.ruby }})
    strategy:
      matrix:
        ruby:
          - '2.3'
          - '2.4'
          - '2.5'
          - '2.6'
          - '2.7'
          - '3.0'
          - 'head'
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: RSpec
        run: bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rspec-cells-0.3.7 .github/workflows/ci.yml
rspec-cells-0.3.6 .github/workflows/ci.yml