Sha256: f9ff49295fe1bc972163af2f6819747e6ebbbf62499bad0611a764ff7d9b46c0

Contents?: true

Size: 573 Bytes

Versions: 2

Compression:

Stored size: 573 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, truffleruby]
        exclude:
          - os: windows-latest
            ruby: truffleruby
    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

2 entries across 2 versions & 1 rubygems

Version Path
alba-1.0.0 .github/workflows/main.yml
alba-0.13.1 .github/workflows/main.yml