mirror of
https://codeberg.org/crowci/crow.git
synced 2025-04-18 04:44:01 +03:00
25 lines
634 B
YAML
25 lines
634 B
YAML
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
# Set the OS, Python version, and other tools you might need
|
|
build:
|
|
os: ubuntu-24.04
|
|
tools:
|
|
python: '3'
|
|
jobs:
|
|
pre_install:
|
|
- pip install -r docs/requirements.txt
|
|
|
|
# Build documentation with Mkdocs
|
|
mkdocs:
|
|
configuration: mkdocs.yaml
|
|
# Optionally, but recommended,
|
|
# declare the Python requirements required to build your documentation
|
|
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
|
|
# python:
|
|
# install:
|
|
# - requirements: docs/requirements.txt
|