From aa30397794c1c95e392a7be62264a1412b675002 Mon Sep 17 00:00:00 2001 From: bodrovis Date: Fri, 1 Nov 2024 22:19:07 +0200 Subject: [PATCH] test with rails 7.1 --- .github/workflows/ci.yml | 5 +++++ gemfiles/Gemfile-rails-7-1 | 18 ++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 gemfiles/Gemfile-rails-7-1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c88e6ff..c7ae716 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ jobs: gemfile: - Gemfile - gemfiles/Gemfile-rails-6-1 + - gemfiles/Gemfile-rails-7-1 - gemfiles/Gemfile-rails-7-2 ruby: - '3.0' @@ -20,6 +21,10 @@ jobs: - 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 diff --git a/gemfiles/Gemfile-rails-7-1 b/gemfiles/Gemfile-rails-7-1 new file mode 100644 index 0000000..910cb59 --- /dev/null +++ b/gemfiles/Gemfile-rails-7-1 @@ -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 \ No newline at end of file