Grading TDU #84
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: TESTS | |
on: | |
# triggered by pull requests | |
pull_request: | |
# triggered manually | |
workflow_dispatch: | |
jobs: | |
# try building slides (pandoc, beamer) | |
test_slides: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cagix/pandoc-lecture@master | |
with: | |
texlive: 'true' | |
- run: make slides | |
# try building lecture notes (hugo) | |
test_hugo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cagix/pandoc-lecture@master | |
with: | |
hugo: 'true' | |
- run: make web |