Release 2.4 #66
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: 'READY: Run doctests' | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| branches: | |
| - main | |
| - stable | |
| jobs: | |
| code_doctests: | |
| name: in code | |
| runs-on: 'ubuntu-latest' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 | |
| with: | |
| persist-credentials: false | |
| - name: Install Python | |
| uses: actions/setup-python@28f2168f4d98ee0445e3c6321f6e6616c83dd5ec | |
| with: | |
| python-version: '3.13' | |
| cache: 'pip' | |
| cache-dependency-path: requirements-ci.txt | |
| - name: Update pip | |
| run: python -m pip install -U pip | |
| - name: Install dev requirements | |
| run: python -m pip install -r requirements-ci.txt | |
| - name: Run doctests | |
| run: | | |
| cd doc | |
| make doctest |