Skip to content

Merge pull request #23 from fido-ai/KyloRen1-patch-1 #77

Merge pull request #23 from fido-ai/KyloRen1-patch-1

Merge pull request #23 from fido-ai/KyloRen1-patch-1 #77

Workflow file for this run

name: Build docs
on:
push:
branches:
- main
jobs:
deploy:
strategy:
matrix:
python-version: [ 3.11 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install -r docs/requirements.txt
- name: Build docs
run: mkdocs gh-deploy --force