We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 44b7fd8 + 6eafb58 commit 831f149Copy full SHA for 831f149
.github/workflows/ci.yml
@@ -15,6 +15,9 @@ jobs:
15
matrix:
16
ruby: ["2.7", "3.0", "3.1", "3.2"]
17
rails: ["6.1", "7.0"]
18
+ include:
19
+ - ruby: "3.2"
20
+ rails: "main"
21
22
env:
23
RAILS_ENV: test
Gemfile
@@ -6,6 +6,7 @@ rails_version = ENV.fetch("RAILS_VERSION", "6.0")
6
7
if rails_version == "main"
8
rails_constraint = { github: "rails/rails" }
9
+ gem "rack", "< 3" # To compatible with capybara. https://github.com/teamcapybara/capybara/issues/2640
10
else
11
rails_constraint = "~> #{rails_version}"
12
end
0 commit comments