DOC: fix convexity reference #553
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
| --- | |
| name: Test docstrings | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: | |
| - "*" | |
| schedule: | |
| - cron: "0 0 * * 1,4" | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: Manual docstring test | |
| default: test | |
| required: false | |
| jobs: | |
| Test: | |
| name: "Test dosctrings" | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches and tags. | |
| - name: setup micromamba | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: ci/envs/314-latest.yaml | |
| - name: Install momepy | |
| run: pip install . | |
| - name: Test docstrings | |
| run: | | |
| pytest -v --color=yes --doctest-only momepy |