upload system dynamics conference poster #39
This file contains hidden or 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: 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 |