Sha256: 3514818da60bfb78df7696aeadd8c7bbd2f7eff6704bb1aed581a9320551c042

Contents?: true

Size: 629 Bytes

Versions: 4

Compression:

Stored size: 629 Bytes

Contents

name: CI

on: [push, pull_request]

jobs:
  test:
    name: Run test suite
    runs-on: ubuntu-20.04 # TODO: Change back to 'ubuntu-latest' when https://github.com/microsoft/mssql-docker/issues/899 resolved.

    env:
      COMPOSE_FILE: docker-compose.ci.yml

    strategy:
      fail-fast: false
      matrix:
        ruby:
          - 3.1.6
          - 3.2.4
          - 3.3.2

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Build docker images
        run: docker compose build --build-arg TARGET_VERSION=${{ matrix.ruby }}

      - name: Run tests
        run: docker compose run ci

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activerecord-sqlserver-adapter-7.2.4 .github/workflows/ci.yml
activerecord-sqlserver-adapter-7.2.3 .github/workflows/ci.yml
activerecord-sqlserver-adapter-7.2.2 .github/workflows/ci.yml
activerecord-sqlserver-adapter-7.2.1 .github/workflows/ci.yml