Skip to content

Update slides

Update slides #19

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test-and-validate:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r src/main/requirements.txt
- name: Run unit tests
run: python -m unittest discover -s src/test -p "test_*.py"
- name: Check internal broken links in changed HTML files
env:
GITHUB_DIFF_RANGE: ${{ github.event_name == 'pull_request' && format('{0}...{1}', github.event.pull_request.base.sha, github.sha) || format('{0}...{1}', github.event.before, github.sha) }}
run: python src/main/ci_internal_links.py