Skip to content

Commit 1179c7b

Browse files
committed
chore(ci): test against rails 7.2
1 parent e5a0784 commit 1179c7b

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
- "6.1"
4343
- "7.0"
4444
- "7.1"
45+
- "7.2"
4546
sequel:
4647
- "~> 5.0"
4748
ruby:
@@ -77,6 +78,10 @@ jobs:
7778
rails: "7.1"
7879
- ruby: "jruby"
7980
rails: "7.1"
81+
- ruby: "2.6"
82+
rails: "7.2"
83+
- ruby: "jruby"
84+
rails: "7.2"
8085
name: Rails ${{ matrix.rails }}, Sequel ${{ matrix.sequel }}, Ruby ${{ matrix.ruby }}
8186

8287
env:

ci/rails-7.2.gemfile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'railties', '~> 7.2.0'
4+
gem 'activemodel', '~> 7.2.0'
5+
gem 'actionpack', '~> 7.2.0'
6+
7+
gemspec :path => '../'
8+
9+
gem 'sequel', "#{ENV['SEQUEL']}"
10+
11+
gem 'fakefs', '>= 1.8.0', :require => 'fakefs/safe'
12+
13+
gem 'rspec-rails', '~> 5.0'
14+
15+
# MRI/Rubinius Adapter Dependencies
16+
platform :ruby do
17+
gem 'pg'
18+
gem 'mysql2'
19+
gem 'sqlite3'
20+
end
21+
22+
# JRuby Adapter Dependencies
23+
platform :jruby do
24+
gem 'jdbc-sqlite3'
25+
gem 'jdbc-mysql'
26+
gem 'jdbc-postgres'
27+
end

0 commit comments

Comments
 (0)