Sha256: b80cc90c05c674d7cc572156ec402cdee6bb50aad044367a49675659b0f3ff34

Contents?: true

Size: 1.19 KB

Versions: 3

Compression:

Stored size: 1.19 KB

Contents

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: CI

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [2.7, '3.0']
        rails_version: ['7.0.2.2', '6.1.4.6']
        include:
          - ruby: '2.7'
            rails_version: '5.2.4.2'
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Install dependencies
      run: bundle install
      env:
        RAILS_VERSION: ${{ matrix.rails_version }}
    - name: Run tests
      run: bundle exec rake ci
      env:
        RAILS_VERSION: ${{ matrix.rails_version }}
        ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
blacklight-hierarchy-6.1.0 .github/workflows/ruby.yml
blacklight-hierarchy-6.0.2 .github/workflows/ruby.yml
blacklight-hierarchy-6.0.1 .github/workflows/ruby.yml