Skip to content

Add more supported date formats #15

Add more supported date formats

Add more supported date formats #15

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