continuous-integration-checks #74
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: continuous-integration-checks | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| python-checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # setup-python is not on the enterprise action allowlist, so we manage | |
| # Python with uv instead (uv can download the interpreter itself). | |
| - name: Install uv | |
| run: pipx install uv | |
| - name: Install Dependencies | |
| run: | | |
| uv python install ${{ matrix.python-version }} | |
| uv sync | |
| - name: Check | |
| run: | | |
| make check |