-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from andgoldschmidt/docs_ci
Docs ci
- Loading branch information
Showing
5 changed files
with
91 additions
and
62 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,55 @@ | ||
name: Docs | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [ "3.7" ] | ||
poetry-version: [ "1.2.1" ] | ||
steps: | ||
# ====== | ||
# Checkout, set up python | ||
# ====== | ||
- name: Check out | ||
uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# ====== | ||
# Install and configure poetry from cache | ||
# ====== | ||
- name: Load cached Poetry installation | ||
id: cached-poetry | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.local # the path depends on the OS | ||
key: poetry-${{ matrix.poetry-version }} | ||
# ====== | ||
# Load cached venv if cache exists | ||
# Install dependencies if cache does not exist | ||
# ====== | ||
- name: Load cached venv | ||
id: cached-poetry-dependencies-docs | ||
uses: actions/cache@v3 | ||
with: | ||
path: .venv | ||
key: docs-${{ matrix.python-version }}-${{ matrix.poetry-version }}-${{ hashFiles('**/poetry.lock') }} | ||
- name: Install dependencies | ||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | ||
run: poetry install --no-interaction --no-root -E docs | ||
# ====== | ||
# Install Pandoc | ||
# ====== | ||
- name: Use pandoc (external to Poetry) | ||
uses: nikeee/setup-pandoc@v1 | ||
# uses: docker://pandoc/latex:2.9 | ||
- run: pip install pandoc | ||
# ====== | ||
# Run test suite | ||
# ====== | ||
- name: Make docs | ||
run: poetry run sphinx-build docs docs/_build |
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
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 |
---|---|---|
@@ -1,15 +1,31 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
image: latest | ||
|
||
python: | ||
version: 3.7 | ||
install: | ||
- method: pip | ||
path: . | ||
extra_requirements: | ||
- docs | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.7" | ||
jobs: | ||
post_create_environment: | ||
- pip install poetry==1.2.1 | ||
- poetry config virtualenvs.create false | ||
post_install: | ||
- poetry install -E docs | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/conf.py | ||
configuration: docs/conf.py | ||
|
||
# If using Sphinx, optionally build your docs in additional formats such as PDF | ||
# formats: | ||
|
||
## Optionally declare the Python requirements required to build your docs | ||
#python: | ||
# install: | ||
# - requirements: docs/requirements.txt |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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