Sha256: c2a0c53499107c4d6c0ef5f0ee98ea9c7bfe8d86365bd0a8517b8ed8e7d7cdc2

Contents?: true

Size: 948 Bytes

Versions: 2

Compression:

Stored size: 948 Bytes

Contents

on:
  push:
    branches:
      - main
  pull_request:
name: ci
jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      max-parallel: 4
      matrix:
        ruby: ["2.7", "3.0", "3.1", "3.2"]
        ar: ["~> 6.0.6", "~> 6.1.7", "~> 7.0.4"]
        # Exclude combinations that are not supported.
        exclude:
          - ruby: "3.0"
            ar: "~> 6.0.6"
          - ruby: "3.1"
            ar: "~> 6.0.6"
          - ruby: "3.2"
            ar: "~> 6.0.6"
    env:
      AR_VERSION: ${{ matrix.ar }}
    steps:
    - uses: actions/checkout@v4
    - 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

2 entries across 2 versions & 1 rubygems

Version Path
activerecord-spanner-adapter-1.5.1 .github/workflows/ci.yaml
activerecord-spanner-adapter-1.5.0 .github/workflows/ci.yaml