Add ability to use custom raw sql for `backfill_column_for_type_chang… #282
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
# Run the linter first for rapid feedback if some trivial stylistic issues | |
# slipped through the cracks. | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
bundler-cache: true | |
- run: bundle exec rubocop | |
test: | |
needs: lint | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_DB: online_migrations_test | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
strategy: | |
matrix: | |
include: | |
- ruby-version: 2.4 | |
gemfile: activerecord_42.gemfile | |
- ruby-version: 2.4 | |
gemfile: activerecord_50.gemfile | |
- ruby-version: 2.4 | |
gemfile: activerecord_51.gemfile | |
- ruby-version: 2.4 | |
gemfile: activerecord_52.gemfile | |
- ruby-version: 2.5 | |
gemfile: activerecord_60.gemfile | |
- ruby-version: 2.5 | |
gemfile: activerecord_61.gemfile | |
- ruby-version: 2.7 | |
gemfile: activerecord_70.gemfile | |
- ruby-version: 2.7 | |
gemfile: activerecord_71.gemfile | |
- ruby-version: 2.7 | |
gemfile: activerecord_head.gemfile | |
# Test against latest versions just in case. | |
- ruby-version: 3.2 | |
gemfile: activerecord_head.gemfile | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Run the test suite | |
run: bundle exec rake test |