Sha256: f622df6f6fe9217e7478a9949195e6bc233c0f12a1124bbdc58563e3622f910f

Contents?: true

Size: 592 Bytes

Versions: 5

Compression:

Stored size: 592 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest]
        # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
        ruby: [2.6, 2.7, '3.0']
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Run the default task
      run: bundle exec rake

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
belated-0.9.0 .github/workflows/main.yml
belated-0.8.3 .github/workflows/main.yml
belated-0.8.2 .github/workflows/main.yml
belated-0.8.1 .github/workflows/main.yml
belated-0.8.0 .github/workflows/main.yml