Sha256: f58d67a190ba0fba97c8a023927243b58f125f2fb0be12f17cdb97b71e9094af

Contents?: true

Size: 606 Bytes

Versions: 2

Compression:

Stored size: 606 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      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.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

2 entries across 2 versions & 1 rubygems

Version Path
belated-0.6.7 .github/workflows/main.yml
belated-0.6.6 .github/workflows/main.yml