diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 89e245051..37bc0884b 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -11,17 +11,22 @@ jobs: runs-on: ubuntu-latest strategy: matrix: + blacklight_version: ['latest'] rails_version: [7.0.4] ruby: ['3.0'] include: - rails_version: 7.0.4 ruby: 3.1 + - rails_version: 7.0.4 + ruby: 3.1 + blacklight_version: 'main' env: RAILS_VERSION: ${{ matrix.rails_version }} + BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }} steps: - uses: actions/checkout@v3 - name: Set up Ruby ${{ matrix.ruby }} - uses: ruby/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: bundler: latest ruby-version: ${{ matrix.ruby }} diff --git a/spec/test_app_templates/Gemfile.extra b/spec/test_app_templates/Gemfile.extra index 14db81bcf..1e73bc791 100644 --- a/spec/test_app_templates/Gemfile.extra +++ b/spec/test_app_templates/Gemfile.extra @@ -1 +1 @@ -gem 'blacklight', github: 'projectblacklight/blacklight', branch: 'main' +gem 'blacklight', github: 'projectblacklight/blacklight', branch: 'main' if ENV['BLACKLIGHT_VERSION'] == 'main'