Sha256: 67aaeb26d97d342ecb4b95b75cfa5bca74bd03385a9cb6f0a9df5369cd094e26

Contents?: true

Size: 1.52 KB

Versions: 4

Compression:

Stored size: 1.52 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]
    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
    - name: Run tests
      run: bundle exec rake ci
      env:
        ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test'
  test_rails5:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [2.7, 2.6]
    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: 5.2.4.2
    - name: Run tests
      run: bundle exec rake ci
      env:
        RAILS_VERSION: 5.2.4.2
        ENGINE_CART_RAILS_OPTIONS: '--skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
blacklight-hierarchy-5.4.0 .github/workflows/ruby.yml
blacklight-hierarchy-5.3.0 .github/workflows/ruby.yml
blacklight-hierarchy-5.2.0 .github/workflows/ruby.yml
blacklight-hierarchy-5.1.0 .github/workflows/ruby.yml