Skip to content

upload system dynamics conference poster #39

upload system dynamics conference poster

upload system dynamics conference poster #39

Workflow file for this run

name: Generate Docs
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Upgrade pip & install pdoc
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
pip install pdoc
- name: Run pdoc and commit
run: |
pdoc --math --docformat numpy -o docs stanify/
- uses: EndBug/add-and-commit@v7
with:
default_author: github_actions