Quarto Doc #27
Workflow file for this run
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: Documentation | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main", "dev", "qdoc", "dev-*"] | |
pull_request: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Checkout plotne-examples | |
uses: actions/checkout@v3 | |
with: | |
repository: has2k1/plotnine-examples | |
path: qdoc/plotnine-examples | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: "1.4.468" | |
- name: Install Package | |
run: | | |
python -m pip install "git+https://github.com/has2k1/quartodoc.git@numpydoc-renderer" | |
python -m pip install ".[doc]" | |
- name: Build docs | |
run: | | |
make doc | |
- name: Deploy to Github Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: qdoc/_site |