Fix missing CSL style error #364
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 | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
schedule: | |
# Run every Monday and Friday at 00:42. The time has been chosen at random. | |
- cron: '42 0 * * 1,5' | |
workflow_dispatch: | |
jobs: | |
test-latex: | |
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
name: LaTeX test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: ['luatex-1', 'luatex-2', 'pdftex-1', 'pdftex-2', 'doc'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up TeX Live | |
uses: zauguin/install-texlive@v3 | |
with: | |
package_file: .github/tl_packages | |
# - name: Set up TeX Live | |
# uses: teatimeguest/setup-texlive-action@v2 | |
# with: | |
# package-file: .github/tl_packages | |
# update-all-packages: true | |
- name: Run example | |
if: ${{ matrix.config == 'doc' }} | |
run: | | |
l3build install | |
cd examples | |
pdflatex -file-line-error -halt-on-error -interaction=nonstopmode example.tex | |
"$(kpsewhich -var-value=TEXMFHOME)"/scripts/citation-style-language/citeproc-lua.lua example.aux | |
pdflatex -file-line-error -halt-on-error -interaction=nonstopmode example.tex | |
rm example.aux example.bbl | |
lualatex -file-line-error -halt-on-error -interaction=nonstopmode example.tex | |
lualatex -file-line-error -halt-on-error -interaction=nonstopmode example.tex | |
- name: Test LaTeX doc | |
if: ${{ matrix.config == 'doc' }} | |
run: l3build doc | |
- name: Test LaTeX package | |
if: ${{ matrix.config != 'doc' }} | |
run: l3build check --config tests/latex/config-${{ matrix.config }} | |
- name: Upload diffs of failed tests | |
if: ${{ matrix.config != 'doc' && failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testfiles | |
path: build/**/*.diff | |
retention-days: 3 | |
test-texlua: | |
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
name: Lua test (texlua) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up TeX Live | |
uses: zauguin/install-texlive@v3 | |
with: | |
package_file: .github/tl_packages | |
# - name: Set up TeX Live | |
# uses: teatimeguest/setup-texlive-action@v2 | |
# with: | |
# package-file: .github/tl_packages | |
# update-all-packages: true | |
- name: Set up Lua | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: "5.3" | |
- name: Set up LuaRocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install busted | |
run: luarocks install busted | |
- name: Test citperoc-lua engine | |
run: busted --run=citeproc --output=TAP | |
- name: Test other Lua modules | |
run: busted --output=TAP | |
test-lua: | |
if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
name: Lua Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
luaVersion: ["5.3", "5.4"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up Lua ${{ matrix.luaVersion }} | |
uses: leafo/gh-actions-lua@v10 | |
with: | |
luaVersion: ${{ matrix.luaVersion }} | |
- name: Set up LuaRocks | |
uses: leafo/gh-actions-luarocks@v4 | |
- name: Install package | |
run: luarocks build | |
- name: Install busted | |
run: luarocks install busted | |
- name: Test citperoc-lua engine | |
run: busted --lua=lua --lpath="" --run=citeproc --output=TAP | |
- name: Test other Lua modules | |
run: busted --lua=lua --lpath="" --output=TAP |