build: Run CI on latest Ubuntu and Mac #644
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
| # Assorted quality checks for PRs. | |
| name: Quality checks | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| run_ci: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| DEVSTACK_WORKSPACE: /tmp | |
| SHALLOW_CLONE: 1 | |
| strategy: | |
| matrix: | |
| python-version: | |
| - '3.11' | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Test Makefile | |
| run: make selfcheck | |
| - name: Install Python dependencies | |
| run: make requirements | |
| - name: Test that docs build without errors | |
| run: make docs |