-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,17 +8,27 @@ on: | |
|
||
jobs: | ||
build: | ||
name: Build docs (Python ${{ matrix.python-version }}, Windows) | ||
runs-on: windows-latest | ||
# Functionality for testing documentation builds on multiple OSes and Python versions | ||
name: Build docs (${{ matrix.python-version }}, ${{ matrix.os }}) | ||
runs-on: | ||
group: GENetLib | ||
labels: GENetLib_windows-latest | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
strategy: | ||
matrix: | ||
os: ["windows-latest"] | ||
python-version: ["3.9"] | ||
|
||
steps: | ||
# Grap the latest commit from the branch | ||
- name: Checkout the branch | ||
uses: actions/[email protected] | ||
with: | ||
persist-credentials: false | ||
|
||
# Install Poetry and build the documentation | ||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
with: | ||
|
@@ -27,17 +37,10 @@ jobs: | |
virtualenvs-in-project: false | ||
installer-parallel: true | ||
|
||
- name: Install Pandoc | ||
run: | | ||
choco install pandoc | ||
- name: Add Poetry to PATH | ||
run: | | ||
$env:PATH = "$env:APPDATA\Python\Python39\Scripts;$env:PATH" | ||
shell: powershell | ||
|
||
- name: Build the documentation with Sphinx | ||
run: | | ||
poetry install --all-extras | ||
sudo apt install pandoc | ||
pip install pandoc | ||
cd docs | ||
poetry run sphinx-build -b html source build/html | ||
shell: powershell |