Skip to content

Commit

Permalink
test with rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bodrovis committed Nov 1, 2024
1 parent 08e597b commit aa30397
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ jobs:
gemfile:
- Gemfile
- gemfiles/Gemfile-rails-6-1
- gemfiles/Gemfile-rails-7-1
- gemfiles/Gemfile-rails-7-2
ruby:
- '3.0'
- 3.1
- 3.2
- 3.3
exclude:
- gemfile: gemfiles/Gemfile-rails-7-2
ruby: '3.0'
- gemfile: Gemfile
ruby: 3.1
- gemfile: Gemfile
ruby: '3.0'
- gemfile: Gemfile
Expand Down
18 changes: 18 additions & 0 deletions gemfiles/Gemfile-rails-7-1
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
source "https://rubygems.org"

gemspec path: ".."

group :test do
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'dotenv', '~> 3.0'
gem 'rails', '~> 7.1', '< 7.2'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.6'
gem 'rubocop', '~> 1.0'
gem 'rubocop-performance', '~> 1.5'
gem 'rubocop-rspec', '~> 2.6'
gem 'rubocop-rake', '~> 0.6'
gem 'simplecov', '~> 0.22'
gem 'simplecov-lcov', '~> 0.8'
gem 'webmock', '~> 3.14'
end

0 comments on commit aa30397

Please sign in to comment.