Skip to content

Merge pull request #43 from heterotopian/watch-options #46

Merge pull request #43 from heterotopian/watch-options

Merge pull request #43 from heterotopian/watch-options #46

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- master
jobs:
pages:
name: Publish Sphinx docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set timezone
uses: zcong1993/setup-timezone@v1.1.1
with:
timezone: "America/New_York"
- name: Setup Python interpreter
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/DOC
- name: Build Sphinx project
run: |
make clean html
mv build/html public
- name: Deploy pages
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: public
CLEAN: true