Sha256: e128296eb9b916ff2e47e32686376d59df74e7d3b8c083c83ca3a915c540fde3
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
name: CI on: [push, pull_request] jobs: test: strategy: matrix: pg: - 9.6 - 10 - 11 - 12 gemfile: - rails_5.0 - rails_5.1 - rails_5.2 - rails_6.0 - rails_6.1 - rails_7.0 name: PostgreSQL ${{ matrix.pg }} runs-on: ubuntu-latest env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile ImageOS: ubuntu20 services: postgresql: image: postgres:${{ matrix.pg }} env: POSTGRES_PASSWORD: postgres # Set health checks to wait until postgres has started options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 ports: - 5432:5432 steps: - uses: actions/checkout@v2 - name: Setup Ruby using .ruby-version file uses: ruby/setup-ruby@v1 with: bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: bundle exec rake spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pg_ha_migrations-1.5.0 | .github/workflows/ci.yml |