From 7887bd3a4256a72a57f53651443b37a9b06a263c Mon Sep 17 00:00:00 2001 From: Johny Ho Date: Tue, 31 Dec 2024 15:54:43 -0500 Subject: [PATCH] Add rails 7.2 and 8.0 to ci --- .github/workflows/build_rails.yml | 6 ++++-- superglue_rails/Gemfile.72 | 11 +++++++++++ superglue_rails/Gemfile.80 | 11 +++++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 superglue_rails/Gemfile.72 create mode 100644 superglue_rails/Gemfile.80 diff --git a/.github/workflows/build_rails.yml b/.github/workflows/build_rails.yml index cbb3ac12..69575af3 100644 --- a/.github/workflows/build_rails.yml +++ b/.github/workflows/build_rails.yml @@ -13,8 +13,10 @@ jobs: fail-fast: false matrix: ruby: ["3.3", "3.2", "3.1"] - version: ["70", "71"] - + version: ["70", "71", "72", "80"] + exclude: + - ruby: 3.1 + version: 80 runs-on: "ubuntu-latest" steps: diff --git a/superglue_rails/Gemfile.72 b/superglue_rails/Gemfile.72 new file mode 100644 index 00000000..1291856d --- /dev/null +++ b/superglue_rails/Gemfile.72 @@ -0,0 +1,11 @@ +source 'https://rubygems.org' +gemspec + +gem 'rails', '~> 7.2.0' +gem 'selenium-webdriver' +gem 'props_template' +gem 'standard' +gem 'capybara' +gem 'minitest' +gem 'rake' +gem 'sqlite3', '~> 1.4' diff --git a/superglue_rails/Gemfile.80 b/superglue_rails/Gemfile.80 new file mode 100644 index 00000000..0445fa79 --- /dev/null +++ b/superglue_rails/Gemfile.80 @@ -0,0 +1,11 @@ +source 'https://rubygems.org' +gemspec + +gem 'rails', '~> 8.0.0' +gem 'selenium-webdriver' +gem 'props_template' +gem 'standard' +gem 'capybara' +gem 'minitest' +gem 'rake' +gem 'sqlite3'