Skip to content

Commit ef55853

Browse files
committed
Add Rails 7.2 and 8.0 to the test matrix
1 parent d2f7ffa commit ef55853

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.github/workflows/ruby.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
rails_version: [7.1.3.4]
15-
ruby: ["3.1", "3.2", "3.3"]
14+
rails_version: [7.2.2]
15+
ruby: ["3.2", "3.3"]
16+
additional_engine_cart_rails_options: [""]
17+
include:
18+
- ruby: "3.1"
19+
rails_version: "7.1.5"
20+
- ruby: "3.3"
21+
rails_version: "8.0.0"
22+
additional_engine_cart_rails_options: --css=bootstrap
1623
env:
1724
RAILS_VERSION: ${{ matrix.rails_version }}
25+
ENGINE_CART_RAILS_OPTIONS: "--skip-git --skip-listen --skip-spring --skip-keeps --skip-kamal --skip-solid --skip-coffee --skip-test ${{ matrix.additional_engine_cart_rails_options }}"
1826
steps:
1927
- uses: actions/checkout@v4
2028
- name: Set up Ruby ${{ matrix.ruby }}

arclight.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
2626

2727
spec.add_dependency 'blacklight', '>= 8.0.0', '< 9'
2828
spec.add_dependency 'gretel'
29-
spec.add_dependency 'rails', '~> 7.0'
29+
spec.add_dependency 'rails', '>= 7.1', '< 9'
3030
spec.add_dependency 'traject', '~> 3.0'
3131
spec.add_dependency 'traject_plus', '~> 2.0'
3232

0 commit comments

Comments
 (0)