Skip to content

Commit 15ad985

Browse files
committed
Allow testing with specific versions of blacklight
1 parent 5cf8be8 commit 15ad985

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ruby.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
rails_version: ['7.0.4.1']
1515
ruby: ['3.1', '3.2']
1616
bootstrap_version: ['~> 4.0']
17-
blacklight_version: ['latest']
17+
blacklight_version: ['']
1818
additional_engine_cart_rails_options: ['']
1919
additional_name: ['']
2020
include:

spec/test_app_templates/Gemfile.extra

+2
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ if ENV['BLACKLIGHT_VERSION'] == 'edge'
55
gem 'blacklight', github: 'projectblacklight/blacklight'
66
gem 'blacklight-gallery', github: 'projectblacklight/blacklight-gallery'
77
gem 'blacklight-oembed', github: 'projectblacklight/blacklight-oembed'
8+
elsif ENV['BLACKLIGHT_VERSION'] && !ENV['BLACKLIGHT_VERSION'].blank?
9+
gem 'blacklight', ENV['BLACKLIGHT_VERSION']
810
end

0 commit comments

Comments
 (0)