Parameter 'check_buffer' in test correctly renamed. #87
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
name: docs | |
# Build and deploy oups API documentation. | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Python setup | |
- name: Set up Python environment | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
# Install build dependencies | |
- name: Install build dependencies | |
run: python -m pip install --upgrade pip setuptools wheel poetry pre-commit | |
# Install extra docs dependencies | |
- name: Install extra docs dependencies | |
run: pip install numpydoc sphinx sphinx-rtd-theme | |
# Build docs | |
- name: Build docs | |
run: catchsegv sphinx-build docs/source docs/build | |
# Add nojeckyll | |
- name: Add nojeckyll | |
run: touch docs/build/.nojekyll | |
# Publish API docs | |
- name: Publish API docs | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: gh-pages | |
FOLDER: docs/build | |
SQUASH_HISTORY: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |