CI #498
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: CI | |
env: | |
TLVERSION: 2024 | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '37 14 * * 5' | |
- cron: '11 5 * * 0' | |
jobs: | |
check: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# http://man7.org/linux/man-pages/man1/date.1.html | |
- name: Get date | |
id: get-date | |
run: | | |
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/texlive | |
~/.texlive | |
key: texlive${{ env.TLVERSION }}-${{ steps.get-date.outputs.date }} | |
restore-keys: texlive${{ env.TLVERSION }}- | |
- name: Set up TeX Live | |
run: . installsupport/install-texlive.sh | |
- name: Run tests | |
run: l3build check -q -H --show-log-on-error | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# http://man7.org/linux/man-pages/man1/date.1.html | |
- name: Get date | |
id: get-date | |
run: | | |
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
/tmp/texlive | |
~/.texlive | |
key: texlive${{ env.TLVERSION }}-${{ steps.get-date.outputs.date }} | |
restore-keys: texlive${{ env.TLVERSION }}- | |
- name: Set up TeX Live | |
run: . installsupport/install-texlive.sh | |
- name: Compile documentation | |
run: l3build doc -q -H |