Unicode math properties #1519
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: Linux | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.allow_failure }} | |
container: | |
image: ghcr.io/tkw1536/latexml-test-runtime:${{ matrix.texlive }}-${{ matrix.perl }} | |
env: | |
CI: true | |
options: --entrypoint "" | |
name: TexLive ${{ matrix.texlive }} / Perl ${{ matrix.perl }} | |
strategy: | |
matrix: | |
include: | |
- perl: "5.34" | |
texlive: none | |
allow_failure: false | |
- perl: "5.32" | |
texlive: none | |
allow_failure: false | |
- perl: "5.30" | |
texlive: none | |
allow_failure: false | |
- perl: "5.28" | |
texlive: none | |
allow_failure: false | |
- perl: "5.26" | |
texlive: none | |
allow_failure: false | |
- perl: "5.34" | |
texlive: "2021" | |
allow_failure: true | |
- perl: "5.32" | |
texlive: "2020" | |
allow_failure: true | |
- perl: "5.30" | |
texlive: "2019" | |
allow_failure: true | |
- perl: "5.28" | |
texlive: "2018" | |
allow_failure: true | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Print Program Versions | |
shell: bash | |
run: | | |
source /usr/local/perlbrew/etc/bashrc | |
perl --version | |
cpanm --version | |
tex --version || true | |
- name: Install Dependencies | |
shell: bash | |
run: | | |
source /usr/local/perlbrew/etc/bashrc | |
cpanm -v --installdeps --notest . | |
- name: Run 'make' | |
shell: bash | |
run: | | |
source /usr/local/perlbrew/etc/bashrc | |
perl Makefile.PL | |
make | |
- name: Run 'make test' | |
shell: bash | |
run: | | |
source /usr/local/perlbrew/etc/bashrc | |
make test |