mirror of
https://github.com/BoPeng/ai-marketplace-monitor.git
synced 2025-12-23 14:18:11 -05:00
26 lines
462 B
YAML
26 lines
462 B
YAML
version: 2
|
|
|
|
build:
|
|
os: ubuntu-22.04
|
|
tools:
|
|
python: "3.12"
|
|
jobs:
|
|
post_create_environment:
|
|
# Install uv for faster dependency resolution
|
|
- pip install uv
|
|
post_install:
|
|
# Install the package with documentation dependencies
|
|
- uv pip install -e .[docs]
|
|
|
|
formats: all
|
|
|
|
sphinx:
|
|
configuration: docs/conf.py
|
|
fail_on_warning: false
|
|
|
|
python:
|
|
install:
|
|
- requirements: docs/requirements.txt
|
|
- method: pip
|
|
path: .
|