Skip to content

Commit ee247ed

Browse files
authored
Merge pull request #30 from projectblacklight/rails72
Support Rails 7.2.0
2 parents c2dd00c + f2e44a5 commit ee247ed

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

.github/workflows/ruby.yml

+18-14
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,33 @@ name: CI
22

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

99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
rails_version: [6.1.7, 7.0.4, 7.1.2]
15-
ruby: ['3.2']
14+
rails_version: [7.1.3.4, 7.2.0]
15+
ruby: [3.3]
1616
include:
17+
- ruby: 3.2
18+
rails_version: 7.1.3.4
1719
- ruby: 3.1
18-
rails_version: 7.0.4
20+
rails_version: 7.0.8.4
21+
- ruby: 3.1
22+
rails_version: 6.1.7.8
1923
env:
2024
RAILS_VERSION: ${{ matrix.rails_version }}
2125
steps:
22-
- uses: actions/checkout@v2
23-
- name: Set up Ruby ${{ matrix.ruby }}
24-
uses: ruby/setup-ruby@v1
25-
with:
26-
ruby-version: ${{ matrix.ruby }}
27-
- name: Install dependencies with Rails ${{ matrix.rails_version }}
28-
run: bundle install
29-
- name: Run tests
30-
run: bundle exec rake
26+
- uses: actions/checkout@v2
27+
- name: Set up Ruby ${{ matrix.ruby }}
28+
uses: ruby/setup-ruby@v1
29+
with:
30+
ruby-version: ${{ matrix.ruby }}
31+
- name: Install dependencies with Rails ${{ matrix.rails_version }}
32+
run: bundle install
33+
- name: Run tests
34+
run: bundle exec rake

blacklight-locale_picker.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
spec.require_paths = ['lib']
2323

2424
spec.required_ruby_version = '>= 2.5.0'
25-
spec.add_dependency "rails", ">= 5.2.3", "< 7.2"
25+
spec.add_dependency "rails", ">= 5.2.3", "< 7.3"
2626

2727
spec.add_development_dependency "capybara"
2828
spec.add_development_dependency "engine_cart"

0 commit comments

Comments
 (0)