Skip to content

Commit 72896d9

Browse files
committed
CI with Rails 7.1
1 parent b2f6c41 commit 72896d9

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
ruby-version: ['2.6.9', '2.7.6', 'jruby-9.3.0.0']
12+
ruby-version: ['2.7.6', 'jruby-9.3.0.0']
1313
gemfile:
1414
- rails_60
1515
- rails_61
1616
include:
1717
- ruby-version: 2.7.6
1818
gemfile: rails_70
19+
- ruby-version: 3.1.5
20+
gemfile: rails_71
1921

2022
env:
2123
RAILS_ENV: test

Appraisals

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ appraise "rails-70" do
2121
gem "concurrent-ruby", "< 1.3.5"
2222
end
2323

24-
appraise "rails-72" do
25-
gem 'activerecord', '~> 7.2.0'
24+
appraise "rails-71" do
25+
gem 'activerecord', '~> 7.1.0'
2626
end

gemfiles/rails_71.gemfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This file was generated by Appraisal
2+
3+
source "http://rubygems.org"
4+
5+
gem "jruby-openssl", platform: :jruby
6+
gem "activerecord", "~> 7.1.0"
7+
8+
group :test do
9+
gem "activerecord-jdbcsqlite3-adapter", platform: [:jruby]
10+
gem "libxml-ruby", platform: [:ruby, :mswin]
11+
gem "rake"
12+
gem "yard"
13+
gem "redcarpet", platform: :ruby
14+
gem "kramdown", platform: :jruby
15+
gem "test-unit"
16+
gem "sqlite3", ">= 1.4.0", "< 2.0", platform: [:ruby, :mswin]
17+
end
18+
19+
gemspec path: "../"

0 commit comments

Comments
 (0)