Skip to content

docs: add custom theme in COGIP colors #211

docs: add custom theme in COGIP colors

docs: add custom theme in COGIP colors #211

Workflow file for this run

name: Build Documentation using MkDocs
on:
pull_request:
branches:
- master
jobs:
build:
name: Build Documentation
runs-on: ubuntu-24.04
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Debian dependencies
run: |
sudo apt-get update
sudo apt-get install -qq libegl1
- name: Install Python dependencies
run: |
python3.11 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip wheel setuptools
pip install -e .[dev]
- name: Build doc
run: |
source venv/bin/activate
mkdocs build