CPU Test #384
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: CPU Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| schedule: | |
| # Every day at noon and midnight | |
| - cron: '0 0,12 * * *' | |
| jobs: | |
| lint: | |
| name: Lint with Black | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e .[dev] | |
| - name: Run Black | |
| run: | | |
| black --check --diff --line-length=120 . | |
| docs: | |
| name: Build documentation | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install documentation dependencies | |
| run: | | |
| ./scripts/setup_stable.sh | |
| - name: Set source commit for docs | |
| run: | | |
| echo "SOURCE_COMMIT=${{ github.sha }}" >> $GITHUB_ENV | |
| - name: Build documentation | |
| run: | | |
| mkdocs build --strict | |
| - name: Upload docs artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: documentation-site | |
| path: site/ | |
| compression-level: 6 | |
| test: | |
| strategy: | |
| matrix: | |
| include: | |
| - python-version: '3.10' | |
| setup-script: 'stable' | |
| - python-version: '3.12' | |
| setup-script: 'latest' | |
| - python-version: '3.12' | |
| setup-script: 'stable' | |
| fail-fast: false | |
| name: Test with Python ${{ matrix.python-version }} (${{ matrix.setup-script }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| ./scripts/setup_${{ matrix.setup-script }}.sh | |
| - name: Freeze dependencies | |
| run: | | |
| pip list | tee requirements-freeze-${{ matrix.python-version }}-${{ matrix.setup-script }}.txt | |
| - name: Upload dependencies artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: dependencies-python-${{ matrix.python-version }}-${{ matrix.setup-script }} | |
| path: requirements-freeze-${{ matrix.python-version }}-${{ matrix.setup-script }}.txt | |
| compression-level: 0 | |
| - name: Run tests | |
| run: | | |
| pytest -v tests | |
| env: | |
| PYTEST_ADDOPTS: "--color=yes" |