Skip to content

Commit

Permalink
test: skip test minted on Ubuntu xenial and bionic
Browse files Browse the repository at this point in the history
  • Loading branch information
zydou committed Aug 29, 2023
1 parent ad89f29 commit 9936190
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ jobs:
working_directory: test/

- name: Compile LaTeX document with minted and lualatex
# skip for xenial and bionic because of pygments issue
if: matrix.base_image != 'xenial' && matrix.base_image != 'bionic'
uses: ./
with:
texlive_version: ${{ matrix.texlive_version }}
Expand All @@ -130,8 +132,6 @@ jobs:
working_directory: test/
latexmk_shell_escape: true
latexmk_use_lualatex: true
extra_system_packages: python3-pip
pre_compile: pip3 install --upgrade Pygments

- name: Download extra fonts
run: |
Expand Down Expand Up @@ -209,6 +209,8 @@ jobs:
run: file test/eps.pdf | grep -q ' PDF '

- name: Test minted and lualatex (minted.tex)
# skip for xenial and bionic because of pygments issue
if: matrix.base_image != 'xenial' && matrix.base_image != 'bionic'
run: file test/minted.pdf | grep -q ' PDF '

- name: Test extra_fonts (extra_fonts.tex)
Expand Down

0 comments on commit 9936190

Please sign in to comment.