Sha256: a68ee55792fd1d576985c91c314b8cfa272d1d73abfe4c4ce827263327bd57c8

Contents?: true

Size: 681 Bytes

Versions: 2

Compression:

Stored size: 681 Bytes

Contents

name: CI

on:
  push:
    branches: [ '**' ]
  pull_request:
    branches: [ '**' ]

jobs:
  test:

    name: Tests
    runs-on: ubuntu-latest

    services:
      postgres:
        image: postgres:11.13-alpine
        env:
          POSTGRES_PASSWORD: password
          POSTGRES_USER: postgres
        ports:
          - 5432:5432

    strategy:
      fail-fast: false
      matrix:
        ruby-version: ['2.4', '2.5', '2.6', '2.7', '3.0']

    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - name: Run tests
      run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
active_record-pg_reconnect-1.0.1 .github/workflows/ci.yml
active_record-pg_reconnect-1.0.0 .github/workflows/ci.yml