diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37224ca..dab8227 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - gemfile: ['6.1_stable', '7.0_stable', '7.1_stable'] + gemfile: ['6.1_stable', '7.0_stable', '7.1_stable', '7.2_stable'] ruby-version: ['3.1', '3.2', '3.3'] services: mysql: diff --git a/Appraisals b/Appraisals index c1f4199..85f8d61 100644 --- a/Appraisals +++ b/Appraisals @@ -14,3 +14,7 @@ appraise '7.1-stable' do gem 'activerecord', '~> 7.1.0' gem 'sqlite3', '~> 1.7.0' end + +appraise '7.2-stable' do + gem 'activerecord', '~> 7.2.0' +end diff --git a/gemfiles/7.2_stable.gemfile b/gemfiles/7.2_stable.gemfile new file mode 100644 index 0000000..9a0f1ea --- /dev/null +++ b/gemfiles/7.2_stable.gemfile @@ -0,0 +1,7 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "activerecord", "~> 7.2.0" + +gemspec path: "../"