mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
* Update Linux_CI.yml * Update MacOS_CI.yml * Update Windows_CI.yml * Delete .lgtm.yml * Update lqr_planner.py * Update lqr_planner.py * Update config.yml * Update environment.yml * Update ruff.toml * Update README.md * Update getting_started_main.rst * Update doc_requirements.txt
29 lines
572 B
YAML
29 lines
572 B
YAML
version: 2.1
|
|
|
|
orbs:
|
|
python: circleci/python@1.4.0
|
|
|
|
jobs:
|
|
build_doc:
|
|
docker:
|
|
- image: cimg/python:3.12
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: doc_build
|
|
command: |
|
|
python --version
|
|
python -m venv venv
|
|
. venv/bin/activate
|
|
pip install -r requirements/requirements.txt
|
|
pip install -r docs/doc_requirements.txt
|
|
cd docs;make html
|
|
- store_artifacts:
|
|
path: docs/_build/html/
|
|
destination: html
|
|
|
|
workflows:
|
|
main:
|
|
jobs:
|
|
- build_doc
|