Skip to content

WIP: Fix CI

WIP: Fix CI #3

Workflow file for this run

name: Docs
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: [ '3.11' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pip install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: pip install -r docs/requirements.txt
- name: Run building docs
run: make build-docs