Sha256: 7f81e78ffde9762b28597d5a709712d072f4ba05f0d93e4b1f20422d19049784

Contents?: true

Size: 879 Bytes

Versions: 3

Compression:

Stored size: 879 Bytes

Contents

on:
  push:
    branches:
      - main
  pull_request:
name: ci
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      max-parallel: 4
      matrix:
        ruby: ["2.6", "2.7", "3.0"]
        ar: ["6.0.4", "6.1.4", "7.0.2.4"]
        # Exclude combinations that are not supported.
        exclude:
          - ruby: "3.0"
            ar: "6.0.4"
          - ruby: "2.6"
            ar: "7.0.2.4"
    env:
      AR_VERSION: ${{ matrix.ar }}
    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
    # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby
    # (see https://github.com/ruby/setup-ruby#versioning):
      uses: ruby/setup-ruby@v1
      with:
        bundler-cache: false
        ruby-version: ${{ matrix.ruby }}
    - name: Install dependencies
      run: bundle install
    - name: Run tests
      run: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.3.1 .github/workflows/ci.yaml
activerecord-spanner-adapter-1.2.2 .github/workflows/ci.yaml
activerecord-spanner-adapter-1.2.1 .github/workflows/ci.yaml