Sha256: 0c45dacc1348a5488db506016adb4e5b45b3644212cce2dff2fbcd2291d09f80

Contents?: true

Size: 483 Bytes

Versions: 4

Compression:

Stored size: 483 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        ruby: [2.5, 2.6, 2.7, 3.0, head]
    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
    - name: Run the default task
      run: |
        bundle exec rake

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tiny_hooks-2.0.0 .github/workflows/main.yml
tiny_hooks-1.0.0 .github/workflows/main.yml
tiny_hooks-0.3.0 .github/workflows/main.yml
tiny_hooks-0.2.0 .github/workflows/main.yml