Skip to content

adding course pages and videos #253

adding course pages and videos

adding course pages and videos #253

Workflow file for this run

name: Build
on:
push:
branches:
- main
release:
types: [published]
pull_request:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
architecture: 'x64'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Build site
run: mkdocs build