mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
27 lines
480 B
YAML
27 lines
480 B
YAML
version: 2.1
|
|
|
|
orbs:
|
|
python: circleci/python@1.4.0
|
|
|
|
jobs:
|
|
build_doc:
|
|
docker:
|
|
- image: circleci/python:3.9
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: doc_build
|
|
command: |
|
|
python -m venv venv
|
|
. venv/bin/activate
|
|
pip install -r requirements.txt
|
|
cd docs;make html
|
|
- store_artifacts:
|
|
path: docs/_build/html/
|
|
destination: html
|
|
|
|
workflows:
|
|
main:
|
|
jobs:
|
|
- build_doc
|