Sha256: 0ccaf747102873dc0a88c8d1189363c6e45879d748b0b0433ae6820c90b2e9b9

Contents?: true

Size: 948 Bytes

Versions: 6

Compression:

Stored size: 948 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, jruby, truffleruby]
        gemfile: [all, without_active_support, without_oj]
        exclude:
          - os: windows-latest
            ruby: jruby
          - os: windows-latest
            ruby: truffleruby
    runs-on: ${{ matrix.os }}
    env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
      BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
    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
    - name: CodeCov
      uses: codecov/codecov-action@v1
      with:
        files: ./coverage/coverage.xml

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alba-1.5.0 .github/workflows/main.yml
alba-1.4.0 .github/workflows/main.yml
alba-1.3.0 .github/workflows/main.yml
alba-1.2.0 .github/workflows/main.yml
alba-1.1.0 .github/workflows/main.yml
alba-1.0.1 .github/workflows/main.yml