Chore: Update rubocop and apply auto-fixes #13
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-pdflatex: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
# TODO: re-enable test on MacOS once we have a way to install TeXlive | |
#- macos-latest | |
- windows-latest | |
ruby: | |
- '3.1' | |
- '3.2' | |
- '3.3' | |
name: "${{ matrix.os }} / ruby ${{ matrix.ruby }}" | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{ matrix.ruby }}" | |
bundler-cache: true | |
- name: Setup dependencies | |
env: | |
BUNDLE_CLEAN: "true" | |
BUNDLE_FROZEN: "false" | |
run: | | |
bundle update --bundler | |
bundle install | |
- name: Install TeX Live | |
if: matrix.os != 'windows-latest' | |
uses: zauguin/install-texlive@v3 | |
with: | |
packages: > | |
latex-bin scheme-basic | |
- name: Install MiKTeX | |
if: matrix.os == 'windows-latest' | |
run: | | |
choco install miktex --no-progress | |
echo "C:\Program Files\MiKTeX\miktex\bin\x64" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 | |
- name: Configure MiKTeX | |
if: matrix.os == 'windows-latest' | |
run: | | |
initexmf --admin --set-config-value=[MPM]AutoInstall=1 | |
miktex --admin packages update-package-database | |
miktex --admin packages update | |
miktex packages update | |
miktex --admin packages install cm-super | |
miktex --admin fndb refresh | |
initexmf --admin --update-fndb | |
initexmf --admin --mklinks --force | |
updmap --admin | |
initexmf --report > miktex-report.txt | |
- name: ltx2any | |
run: | | |
ruby ltx2any.rb test/test.tex |