Upgrade build requirements documentation.yml #36
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: 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/plotnine-examples" | |
python -m pip install "git+https://github.com/has2k1/quartodoc.git@numpydoc-renderer" | |
python -m pip install ".[doc]" | |
- name: Environment Information | |
shell: bash | |
run: | | |
ls -la | |
ls -la qdoc | |
pip list | |
- name: Build docs | |
run: | | |
make doc | |
- name: Deploy to Github Pages | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: qdoc/_site |