Skip to content

Commit

Permalink
Merge pull request #590 from Fryguy/drop_61_add_71_and_72
Browse files Browse the repository at this point in the history
Drop Rails 6.1 testing and add Rails 7.1 and 7.2 testing

(cherry picked from commit b6b82e9)
  • Loading branch information
kbrock authored and Fryguy committed Sep 4, 2024
1 parent 865dcbb commit 7b1694f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
ruby-version:
- '3.1'
rails-version:
- '6.1'
- '7.0'
- '7.1'
- '7.2'
env:
CC_TEST_REPORTER_ID: "${{ secrets.CC_TEST_REPORTER_ID }}"
steps:
Expand Down
6 changes: 4 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ minimum_version =
case ENV['TEST_RAILS_VERSION']
when "7.0"
"~>7.0.8"
else
"~>6.1.4"
when "7.1"
"~>7.1.4"
when "7.2"
"~>7.2.1"
end

gem "activesupport", minimum_version
2 changes: 1 addition & 1 deletion manageiq-gems-pending.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "ftpd", "~> 2.1.0"
s.add_development_dependency "manageiq-style"
s.add_development_dependency "rake", ">= 12.3.3"
s.add_development_dependency "rspec", "~> 3.5.0"
s.add_development_dependency "rspec", "~> 3.13"
s.add_development_dependency "simplecov", ">= 0.21.2"
s.add_development_dependency "timecop", "~> 0.9.1"
s.add_development_dependency "xml-simple", "~> 1.1.0"
Expand Down

0 comments on commit 7b1694f

Please sign in to comment.