Skip to content

Update to Rails 8

Update to Rails 8 #112

Workflow file for this run

name: Test PostgreSQL
on: [push, pull_request]
jobs:
test-latest:
name: "Active Record 8.0 + Ruby 3.3"
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: active_record_doctor_primary
POSTGRES_USER: github
POSTGRES_PASSWORD: github
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-8.0.x
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: Prepare PostgreSQL
run: createdb active_record_doctor_secondary
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: github
PGPASSWORD: github
PGDATABASE: postgres
- name: Run the test suite against PostgreSQL
run: bundle exec rake test:postgresql
env:
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: github
DATABASE_PASSWORD: github
test-supported:
name: "Active Record ${{ matrix.active_record }} + Ruby ${{ matrix.ruby }}"
needs: [test-latest]
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_DB: active_record_doctor_primary
POSTGRES_USER: github
POSTGRES_PASSWORD: github
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
active_record: ["7.0", "7.1", "7.2"]
exclude:
- ruby: "3.0"
active_record: "7.2"
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/Gemfile.activerecord-${{ matrix.active_record }}.x
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: ${{ matrix.rubygems }}
bundler-cache: true
- name: Prepare PostgreSQL
run: createdb active_record_doctor_secondary
env:
PGHOST: localhost
PGPORT: 5432
PGUSER: github
PGPASSWORD: github
PGDATABASE: postgres
- name: Run the test suite against PostgreSQL
run: bundle exec rake test:postgresql
env:
DATABASE_HOST: localhost
DATABASE_PORT: 5432
DATABASE_USERNAME: github
DATABASE_PASSWORD: github