Move to Pythonic functions with strict models #7
Workflow file for this run
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
| # Workflow that runs on code changes to a pull request. | |
| name: Any changes | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| docs: | |
| name: Test documentation builds | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.10' | |
| - name: Install package | |
| run: make install | |
| - name: Test documentation builds | |
| run: make documentation |