Sha256: 8bf2f981f576e84ef0a8214e31fecf6d86dd48851fe88915372be29dcbe21c24

Contents?: true

Size: 516 Bytes

Versions: 3

Compression:

Stored size: 516 Bytes

Contents

name: CI
on: [push, pull_request]
jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
        ruby: [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 # runs 'bundle install' and caches installed gems automatically
    - run: bundle exec rake

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reform-2.6.2 .github/workflows/ci.yml
reform-2.6.1 .github/workflows/ci.yml
reform-2.6.0 .github/workflows/ci.yml