EPUBMaker: verify_target_imagesが有効なときに、coverimageを暗黙に取り込む #442
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: Test with TeXLive | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ['3.2'] | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install TeXLive 2021 in ubuntu | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update -y -qq && sudo apt-get install -y -qq texlive-lang-japanese texlive-fonts-recommended texlive-fonts-extra texlive-luatex texlive-extra-utils texlive-latex-extra dvipng poppler-utils | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: fix ImageMagick policy.xml on Linux | |
if: runner.os == 'Linux' | |
run: sudo sed -i 's/none/read|write/g' /etc/ImageMagick-6/policy.xml | |
- name: use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Build and test with Rake | |
run: | | |
gem install bundler --no-document | |
bundle install --retry 3 | |
bundle exec rake |