We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f45880e commit c7db3d5Copy full SHA for c7db3d5
2 files changed
.github/workflows/ci.yml
@@ -52,10 +52,12 @@ jobs:
52
matrix:
53
ruby:
54
- '3.4'
55
+ - '4.0'
56
rails:
57
- '7.2'
58
- '8.0'
59
- '8.1.1'
60
+ - 'edge'
61
62
steps:
63
- name: Checkout
Gemfile
@@ -8,8 +8,13 @@ gem 'dotenv'
8
gem 'with_advisory_lock', '>= 7'
9
10
rails_version = ENV['RAILS_VERSION'] || '8.0'
11
-gem 'activerecord', "~> #{rails_version}"
12
-gem 'railties', "~> #{rails_version}"
+if rails_version == 'edge'
+ gem 'activerecord', github: 'rails/rails'
13
+ gem 'railties', github: 'rails/rails'
14
+else
15
+ gem 'activerecord', "~> #{rails_version}"
16
+ gem 'railties', "~> #{rails_version}"
17
+end
18
19
platforms :mri, :truffleruby do
20
# Database adapters
0 commit comments