Skip to content

Commit

Permalink
Add rails 7.2 and 8.0 to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jho406 committed Dec 31, 2024
1 parent e31381f commit 7887bd3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_rails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
11 changes: 11 additions & 0 deletions superglue_rails/Gemfile.72
Original file line number Diff line number Diff line change
@@ -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'
11 changes: 11 additions & 0 deletions superglue_rails/Gemfile.80
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 7887bd3

Please sign in to comment.