Sha256: 6f1fdff8a65fab1cf673d4a4e79e94b581444d7cf5730b4731030b89c6eefba4

Contents?: true

Size: 436 Bytes

Versions: 2

Compression:

Stored size: 436 Bytes

Contents

name: Ruby

on: [push]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.5, 2.6, 2.7, 3.0]
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Run RSpec
      run: bundle exec rspec
    - name: Run Rubocop
      run: bundle exec rubocop

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simplecov-review-0.2.0 .github/workflows/main.yml
simplecov-review-0.1.0 .github/workflows/main.yml