Skip to content

Commit 9ab2474

Browse files
authored
Merge pull request #233 from btalayeminaei/expand-ruby-ci-matrix
Expand CI Matrix
2 parents a827dc1 + e5a136f commit 9ab2474

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,22 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
ruby: [2.7, "3.0", 3.1, 3.2]
9+
ruby: ["3.2", "3.3", "3.4"]
1010
bundler: [default]
1111
gemfile:
12-
- active_support_6
1312
- active_support_7
13+
- active_support_8
1414
include:
1515
- { ruby: "2.3", gemfile: "active_support_3", bundler: "1" }
1616
- { ruby: "2.4", gemfile: "active_support_4", bundler: "1" }
1717
- { ruby: "2.5", gemfile: "active_support_4", bundler: "1" }
1818
- { ruby: "2.5", gemfile: "active_support_5", bundler: "1" }
1919
- { ruby: "2.6", gemfile: "active_support_5", bundler: "1" }
2020
- { ruby: "2.6", gemfile: "active_support_6", bundler: "1" }
21+
- { ruby: "2.7", gemfile: "active_support_6" }
22+
- { ruby: "2.7", gemfile: "active_support_7" }
23+
- { ruby: "3.0", gemfile: "active_support_7" }
24+
- { ruby: "3.1", gemfile: "active_support_7" }
2125

2226
env:
2327
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile

gemfiles/active_support_8.gemfile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
gemspec path: '../'
3+
4+
group :development, :test do
5+
gem 'activesupport', '~> 8.0'
6+
end

0 commit comments

Comments
 (0)