Sha256: c3a6b991aa9f22c20e147122acf4de0f918220c7b26bc25f2f709500368798fc

Contents?: true

Size: 507 Bytes

Versions: 6

Compression:

Stored size: 507 Bytes

Contents

name: main
on: [push, pull_request]
jobs:
  test:
    strategy:
      fail-fast: true
      matrix:
        os: [ubuntu-latest, macos-latest]
        # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
        ruby: [2.5, 2.6, 2.7, '3.0', head]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: run test
      run: make test

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
application_form-0.5.4 .github/workflows/main.yml
application_form-0.5.3 .github/workflows/main.yml
application_form-0.5.2 .github/workflows/main.yml
application_form-0.5.1 .github/workflows/main.yml
application_form-0.5.0 .github/workflows/main.yml
application_form-0.4.0 .github/workflows/main.yml