Skip to content

Orga: update the lecture schedule for winter 2024/2025 (still preliminary status, but stable enough for a merge) #112

Orga: update the lecture schedule for winter 2024/2025 (still preliminary status, but stable enough for a merge)

Orga: update the lecture schedule for winter 2024/2025 (still preliminary status, but stable enough for a merge) #112

Workflow file for this run

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