Skip to content

[INTERNAL] Upgrade to Python3.9 #250

[INTERNAL] Upgrade to Python3.9

[INTERNAL] Upgrade to Python3.9 #250

Workflow file for this run

name: "Sphinx Documentation"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
docs:
name: Build Sphinx Documentation
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
setup.cfg
docker/requirements.txt
- name: Build Docs
run: make docs
env:
SYSTEM_PYTHON: python${{ matrix.python-version }}
- name: Deploy to GitHub Pages
if: ${{ github.ref == 'refs/heads/main' }}
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist/html