Skip to content

Commit 314f719

Browse files
authored
Merge pull request #32 from willnet/ruby-4-0-0
Add Ruby4.0 to the CI matrix
2 parents 4eef443 + 9ee3496 commit 314f719

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

.github/workflows/ruby.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4']
21+
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3', '3.4', '4.0']
2222
gemfile:
2323
- rails_6_1
2424
- rails_7_0
@@ -27,6 +27,12 @@ jobs:
2727
- rails_8_0
2828
- rails_8_1
2929
exclude:
30+
- ruby-version: '4.0'
31+
gemfile: rails_6_1
32+
- ruby-version: '4.0'
33+
gemfile: rails_7_0
34+
- ruby-version: '4.0'
35+
gemfile: rails_7_1
3036
- ruby-version: '3.4'
3137
gemfile: rails_6_1
3238
- ruby-version: '3.4'

gemfiles/rails_6_1.gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ source "https://rubygems.org"
33
gem "rails", "~> 6.1.0"
44
gem "sqlite3", "~> 1.4"
55
gem "concurrent-ruby", "< 1.3.5"
6+
gem "minitest", "< 6.0.0"
7+
68
gemspec path: '../'

gemfiles/rails_7_0.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rails", "~> 7.0.0"
44
gem "sqlite3", "~> 1.4"
55
gem "concurrent-ruby", "< 1.3.5"
6+
gem "minitest", "< 6.0.0"
67

78
gemspec path: '../'

gemfiles/rails_7_1.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rails", "~> 7.1.0"
44
gem "sqlite3", "~> 1.4"
55
gem "logger", ">= 1.6.0"
6+
gem "minitest", "< 6.0.0"
67

78
gemspec path: '../'

gemfiles/rails_7_2.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rails", "~> 7.2.0"
44
gem "sqlite3"
55
gem "logger", ">= 1.6.0"
6+
gem "minitest", "< 6.0.0"
67

78
gemspec path: '../'

gemfiles/rails_8_0.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rails", "~> 8.0.0"
44
gem "sqlite3"
55
gem "logger", ">= 1.6.0"
6+
gem "minitest", "< 6.0.0"
67

78
gemspec path: '../'

gemfiles/rails_8_1.gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ source "https://rubygems.org"
33
gem "rails", "~> 8.1.0"
44
gem "sqlite3"
55
gem "logger", ">= 1.6.0"
6+
gem "minitest", "< 6.0.0"
67

78
gemspec path: '../'

0 commit comments

Comments
 (0)