Fix embed layout so text will show up on the right if that is selected #2464
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: test (ruby ${{ matrix.ruby }} / rails ${{ matrix.rails_version }} / blacklight ${{ matrix.blacklight_version }} ${{ matrix.additional_name }}) | |
strategy: | |
matrix: | |
rails_version: ["~> 7.2"] | |
ruby: ["3.2", "3.3"] | |
bootstrap_version: ["~> 4.0"] | |
blacklight_version: ["~> 7.34"] | |
additional_engine_cart_rails_options: [""] | |
additional_name: [""] | |
include: | |
- rails_version: "~> 7.2" | |
ruby: "3.3" | |
blacklight_version: "~> 7.34" | |
bootstrap_version: ~> 5.0 | |
additional_name: Bootstrap 5 | |
- rails_version: "7.1.4" | |
ruby: "3.2" | |
blacklight_version: "~> 7.34" | |
bootstrap_version: ~> 4.0 | |
additional_name: Rails 7.1 | |
- rails_version: "~> 7.2" | |
ruby: "3.3" | |
blacklight_version: "~> 8.0" | |
bootstrap_version: ~> 4.0 | |
additional_name: Blacklight 8 | |
additional_engine_cart_rails_options: "-j rollup -a sprockets" | |
env: | |
RAILS_VERSION: ${{ matrix.rails_version }} | |
BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }} | |
BOOTSTRAP_VERSION: ${{ matrix.bootstrap_version }} | |
ENGINE_CART_RAILS_OPTIONS: "--skip-git --skip-listen --skip-spring --skip-keeps --skip-coffee --skip-test ${{ matrix.additional_engine_cart_rails_options }}" | |
steps: | |
- name: Install ImageMagick | |
run: sudo apt install imagemagick | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: false | |
bundler: "latest" | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: false |