Skip to content

BF: Explicitly build for the linux platform. #217

BF: Explicitly build for the linux platform.

BF: Explicitly build for the linux platform. #217

Workflow file for this run

name: Documentation build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.10", "3.11"]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e '.[dev, fury]'
- name: Build docs
run: |
cd doc
make html
- name: Upload docs
uses: actions/upload-artifact@v1
with:
name: docs
path: doc/_build/html
- name: Publish docs to Github Pages
if: startsWith(github.event.ref, 'refs/tags')
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: doc/_build/html