Sha256: 81664c02cf415b6758a7e082a6c7c40a25e5fd3fd02c0747871cfd62997e1491

Contents?: true

Size: 1.11 KB

Versions: 1

Compression:

Stored size: 1.11 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: Build

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: ['2.7', '3.0', '3.1']
        activerecord: ['6.0', '6.1', '7.0']
        plugin: ['', '_with_request_store']
        experimental: [false]
    continue-on-error: ${{ matrix.experimental }}
    env:
      APPRAISAL: activerecord_${{ matrix.activerecord }}${{ matrix.plugin }}
    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
        bundle exec appraisal $APPRAISAL bundle install
    - name: Run tests
      run: bundle exec appraisal $APPRAISAL rake

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
operator_recordable-2.0.0 .github/workflows/ruby.yml