Skip to content

Remove python 3.6 and 3.7 from build matrix #16

Remove python 3.6 and 3.7 from build matrix

Remove python 3.6 and 3.7 from build matrix #16

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- master
jobs:
build:
name: Deploy Docs
runs-on: ubuntu-latest
steps:
- name: Checkout 🚚
uses: actions/checkout@v1
- name: Set up Python 🐍
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies ⚙️
run: |
pip install -U -e .[docs]
- name: Build Sphinx Documentation 📄
run: |
cd docs
make html
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages
folder: docs/_build/html