removing double arrays from AgeDistribution parameters (causes error … #6
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
# This workflow will Rebuild emod-api Docs triggered when changes to rst, python or requirements.txt files are intended. | |
name: Rebuild emod-api docs | |
on: | |
push: | |
paths: | |
- '**.py' | |
- '**/*docs/**' | |
- '**/requirements.txt' | |
pull_request: | |
paths: | |
- '**.py' | |
- '**/*docs/**' | |
- '**/requirements.txt' | |
jobs: | |
emod-api-docs-rebuild: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Repo Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
# Environment Setup | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
# emod-api package setup | |
- name: Install emod-api requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt --index-url=https://packages.idmod.org/api/pypi/pypi-production/simple | |
- name: Install the emod-api package | |
run: | | |
pip install -e . --index-url=https://packages.idmod.org/api/pypi/pypi-production/simple | |
# docs | |
- name: Install documentation build requirements | |
run: | | |
pip install -r docs/requirements.txt --index-url=https://packages.idmod.org/api/pypi/pypi-production/simple | |
- name: Build docs - html - no break | |
working-directory: 'docs' | |
run: | | |
make clean | |
make htmlnobreak | |