Made add_foreign_key retriable with safe_by_default and Active Record… #329
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: 3.3 | |
gemfile: gemfiles/activerecord80.gemfile | |
- ruby: 3.3 | |
gemfile: Gemfile | |
- ruby: 3.3 | |
gemfile: gemfiles/activerecord71.gemfile | |
- ruby: 3.2 | |
gemfile: gemfiles/activerecord70.gemfile | |
- ruby: 3.1 | |
gemfile: gemfiles/activerecord61.gemfile | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- uses: ankane/setup-postgres@v1 | |
with: | |
database: strong_migrations_test | |
- run: bundle exec rake test | |
- uses: ankane/setup-mysql@v1 | |
with: | |
database: strong_migrations_test | |
- run: ADAPTER=mysql2 bundle exec rake test | |
- run: ADAPTER=trilogy bundle exec rake test | |
- uses: ankane/setup-mariadb@v1 | |
with: | |
database: strong_migrations_test | |
- run: ADAPTER=mysql2 bundle exec rake test | |
- run: ADAPTER=trilogy bundle exec rake test |