From c929b7e193b702f0bccd834537ac68f3ab5e0040 Mon Sep 17 00:00:00 2001 From: Nikita Bulai Date: Mon, 11 Mar 2024 12:13:19 +0300 Subject: [PATCH] Test with Rails 7.1 --- .github/workflows/ci.yml | 3 ++- gemfiles/rails_7_1.gemfile | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 gemfiles/rails_7_1.gemfile diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7770eb61..109be527c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,6 @@ jobs: matrix: os: [ ubuntu-latest ] ruby: - - 2.7 - '3.0' - '3.1' - '3.2' @@ -30,6 +29,7 @@ jobs: - gemfiles/rails_6_0.gemfile - gemfiles/rails_6_1.gemfile - gemfiles/rails_7_0.gemfile + - gemfiles/rails_7_1.gemfile steps: - name: Repo checkout uses: actions/checkout@v4 @@ -65,6 +65,7 @@ jobs: - gemfiles/rails_6_0.gemfile - gemfiles/rails_6_1.gemfile - gemfiles/rails_7_0.gemfile + - gemfiles/rails_7_1.gemfile runs-on: ubuntu-latest env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile new file mode 100644 index 000000000..22f7f98ba --- /dev/null +++ b/gemfiles/rails_7_1.gemfile @@ -0,0 +1,22 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "rails", "~> 7.1.0" +gem "rspec-core" +gem "rspec-expectations" +gem "rspec-mocks" +gem "rspec-rails", "~> 5.0" +gem "rspec-support" +gem "rubocop", "~> 1.4" +gem "rubocop-performance", require: false +gem "rubocop-rails", require: false +gem "rubocop-rspec", require: false +gem "bcrypt", "~> 3.1", require: false +gem "activerecord-jdbcsqlite3-adapter", platform: :jruby +gem "sprockets-rails" +gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw, :x64_mingw] +gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw] +gem "timecop" + +gemspec path: "../"