Skip to content

Add recording, update front page with competition #179

Add recording, update front page with competition

Add recording, update front page with competition #179

Workflow file for this run

name: build
on:
- pull_request
jobs:
build:
name: test build docs
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: checkout
uses: actions/checkout@v1
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install poetry
poetry install --no-root
- run: poetry run mkdocs build