File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -2,21 +2,18 @@ name: CI
22
33on :
44 push :
5- branches : [ master ]
5+ branches : [master]
66 pull_request :
7- branches : [ master ]
7+ branches : [master]
88
99jobs :
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 :
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
You can’t perform that action at this time.
0 commit comments