Skip to content

Commit 62ea0b8

Browse files
committed
Simplify the testing matrix and only test on Ruby 3.4
1 parent b0dd235 commit 62ea0b8

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,18 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88

99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
# Test against multiple Ruby versions and pagination libraries
16-
# Note: Ruby 3.2/3.3 have 1 pre-existing test failure in Kaminari/WillPaginate
17-
# (Fixnum monkey-patching in spec/rails_spec.rb:273)
18-
ruby: ['3.1', '3.2', '3.3']
19-
paginator: ['pagy', 'kaminari', 'will_paginate']
15+
# Test against pagination libraries
16+
paginator: ["pagy", "kaminari", "will_paginate"]
2017
env:
2118
PAGINATOR: ${{ matrix.paginator }}
2219
steps:
@@ -25,7 +22,7 @@ jobs:
2522
- name: Set up Ruby
2623
uses: ruby/setup-ruby@v1
2724
with:
28-
ruby-version: ${{ matrix.ruby }}
25+
ruby-version: 3.4
2926
bundler-cache: true
3027

3128
- name: Run tests

0 commit comments

Comments
 (0)