fix accepts_nested_attributes_for
triggering db connection in rails 7.2
#1763
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: RSpec | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "0 10 * * *" | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
ALLOW_FAILURES: "${{ matrix.allow_failures }}" | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
ENABLE_PARENT_ASSIGNMENT: "${{ matrix.enable_parent_assignment }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["jruby-9.4.8.0", "3.0", 3.1, 3.2] | |
gemfile: [ | |
"gemfiles/jruby.gemfile", | |
"gemfiles/rails_7_0.gemfile", | |
"gemfiles/rails_7_1.gemfile", | |
"gemfiles/rails_7_2.gemfile" | |
] | |
enable_parent_assignment: ["true", "false"] | |
allow_failures: | |
- false | |
exclude: | |
- ruby: "jruby-9.4.8.0" | |
gemfile: gemfiles/rails_7_0.gemfile | |
- ruby: "jruby-9.4.8.0" | |
gemfile: gemfiles/rails_7_1.gemfile | |
- ruby: "jruby-9.4.8.0" | |
gemfile: gemfiles/rails_7_2.gemfile | |
- ruby: "jruby-9.4.8.0" | |
gemfile: gemfiles/railsmaster.gemfile | |
- ruby: "3.0" | |
gemfile: gemfiles/rails_7_2.gemfile | |
- ruby: "3.0" | |
gemfile: gemfiles/jruby.gemfile | |
- ruby: 3.1 | |
gemfile: gemfiles/jruby.gemfile | |
- ruby: 3.2 | |
gemfile: gemfiles/jruby.gemfile | |
include: | |
- ruby: ruby-head | |
gemfile: gemfiles/railsmaster.gemfile | |
allow_failures: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 5 | |
bundler: 2.2.0 | |
- name: Run RSpec | |
run: bundle exec rake spec || $ALLOW_FAILURES |