Skip to content

Commit

Permalink
Merge pull request #687 from kbrock/ruby3.3
Browse files Browse the repository at this point in the history
Test ruby 7.2
  • Loading branch information
kbrock authored Oct 22, 2024
2 parents 404c514 + 5129762 commit 8a4e7c0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# - https://www.ruby-lang.org/en/downloads/branches/
# - https://guides.rubyonrails.org/maintenance_policy.html
format: [materialized_path, materialized_path2]
activerecord: [70, 71]
activerecord: [70, 71, 72]
ruby: [3.2, 3.3]
# additional tests
include:
Expand Down
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# on a mac using:
# bundle config --global build.mysql2 "--with-mysql-dir=$(brew --prefix mysql)"

%w[5.2.8 6.0.6 6.1.7 7.0.8 7.1.3].each do |ar_version|
%w[5.2.8 6.0.6 6.1.7 7.0.8 7.1.3 7.2.1].each do |ar_version|
appraise "gemfile-#{ar_version.split('.').first(2).join}" do
gem 'activerecord', "~> #{ar_version}"
# active record 5.2 uses ruby 2.6
Expand Down
10 changes: 10 additions & 0 deletions gemfiles/gemfile_72.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.2.1"
gem "mysql2"
gem "pg"
gem "sqlite3", "< 2.0"

gemspec path: "../"

0 comments on commit 8a4e7c0

Please sign in to comment.