Skip to content

Added/video-links

Added/video-links #17

Workflow file for this run

name: Test website build ⚙️
on:
pull_request:
paths:
- '**'
jobs:
build:
name: Test website build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install requirements 📦
run: |
python3 -m pip install --upgrade pip
pip3 install mkdocs
- name: Test build 📦
run: mkdocs build --strict