Sha256: 68b5e82e7e6e89eafbe3d55956fcf299e50d3c435688ac6c229ad75aaf20b990

Contents?: true

Size: 633 Bytes

Versions: 3

Compression:

Stored size: 633 Bytes

Contents

name: Ruby
on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master
jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - '2.7'
          - '3.0'
          - '3.1'
          - ruby-head
          - jruby-9.3.3.0
        include:
          - ruby: ruby-head
            env:
              RUBYOPT: '--jit'
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - run: bundle exec rake
        env:
          LONG_RUN: true

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
roo-2.10.1 .github/workflows/ruby.yml
roo-2.10.0 .github/workflows/ruby.yml
roo-2.9.0 .github/workflows/ruby.yml