-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename doc/ to docs/ * Support cached properties in Sphinx * Remove API key residue * Add Sphinx documentation * Add CI workflow for building Sphinx documentation * Add Read the Docs configuration file * Update colour of XCC title * Apply formatter * Switch to using RST for the README * Create walkthrough page from README sections * Delete empty first line from circuit.xbb * Add docstrings to Settings attributes * Replace raw HTML with RST image directive * Replace :align: option with :width: option * Update README.rst
- Loading branch information
1 parent
d09b341
commit 2cbb8d4
Showing
48 changed files
with
4,839 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Documentation Check | ||
on: | ||
- pull_request | ||
|
||
jobs: | ||
sphinx: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: josh146/sphinx-action@master | ||
with: | ||
docs-folder: "docs/" | ||
pre-build-command: "apt install -y graphviz && pip3 install . && pip3 install -r docs/requirements.txt" | ||
build-command: "sphinx-build -b html . _build -W --keep-going" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,7 @@ instance/ | |
|
||
# Sphinx documentation | ||
docs/_build/ | ||
docs/api/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
|
||
sphinx: | ||
configuration: docs/conf.py | ||
|
||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: docs/requirements.txt | ||
- method: pip | ||
path: . | ||
|
||
build: | ||
image: latest |
Oops, something went wrong.