Skip to content

Commit ef9ac53

Browse files
committed
feat(ci): remove ruby 2.4, add ruby 3.3 and 3.4 to the ci matrix
1 parent 55df2b7 commit ef9ac53

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [2.4, 2.7, '3.0', 3.1, 3.2, truffleruby-head]
11+
ruby: [2.7, '3.0', 3.1, 3.2, 3.3, 3.4, truffleruby-head]
1212

1313
steps:
1414
- uses: actions/checkout@v3
@@ -22,13 +22,7 @@ jobs:
2222
run: |
2323
sudo apt-get install libsqlite3-dev
2424
25-
- name: Install legacy bundler for Ruby 2.4
26-
if: ${{ matrix.ruby == 2.4 }}
27-
run: |
28-
gem install -q bundler -v 2.3.26
29-
30-
- name: Install bundler 2.4+ for modern Rubies
31-
if: ${{ matrix.ruby != 2.4 }}
25+
- name: Install bundler
3226
run: |
3327
gem install -q bundler
3428

0 commit comments

Comments
 (0)