ci: Update list of GHA machines to run "Verify package is installed well" job #560
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
| defaults: | |
| run: | |
| shell: "bash" | |
| name: "CI" | |
| on: | |
| push: | |
| branches: ["main"] | |
| tags: ["v*"] | |
| pull_request: | |
| branches: ["main"] | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}" | |
| cancel-in-progress: true | |
| env: | |
| PYTHONUNBUFFERED: "1" | |
| jobs: | |
| dev: | |
| name: "Verify package is installed well" | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-24.04", "windows-2025", "macos-13", "macos-15"] | |
| runs-on: "${{ matrix.os }}" | |
| steps: | |
| - uses: "actions/checkout@v5.0.0" | |
| - id: "python_and_poetry" | |
| uses: "./.github/actions/install_python_and_poetry" | |
| with: | |
| cache-key-suffix: "-main" | |
| python-version-file: ".python-version" | |
| - name: "Install package" | |
| run: "poetry install --only main" | |
| - if: "${{ matrix.os != 'windows-2025' }}" | |
| name: "Import package" | |
| run: "poetry run python3 -c 'import aiohttp_middlewares'" | |
| - if: "${{ matrix.os == 'windows-2025' }}" | |
| name: "Import package on Windows" | |
| run: | | |
| source .venv/Scripts/activate | |
| poetry run python3 -c 'help("modules")' | |
| poetry run python3 -c 'import aiohttp_middlewares' | |
| docs: | |
| uses: "./.github/workflows/ci_verify_docs_build.yml" | |
| test: | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| include: | |
| - python-version: "3.13" | |
| dev: "true" | |
| name: "Python ${{ matrix.python-version }}" | |
| runs-on: "ubuntu-24.04" | |
| steps: | |
| - uses: "actions/checkout@v5.0.0" | |
| - id: "python_and_poetry" | |
| uses: "./.github/actions/install_python_and_poetry" | |
| with: | |
| cache-key-suffix: "-dev-test" | |
| python-version: "${{ matrix.python-version }}" | |
| - if: "${{ matrix.dev == 'true' }}" | |
| uses: "./.github/actions/run_pre_commit" | |
| with: | |
| python-version: "${{ steps.python_and_poetry.outputs.python-version }}" | |
| - uses: "./.github/actions/run_tox" | |
| with: | |
| python-path: "${{ steps.python_and_poetry.outputs.python-path }}" | |
| python-version: "${{ steps.python_and_poetry.outputs.python-version }}" | |
| use-coveralls: "${{ matrix.dev }}" | |
| coveralls-token: "${{ secrets.GITHUB_TOKEN }}" | |
| package: | |
| needs: ["test"] | |
| permissions: | |
| id-token: "write" | |
| uses: "./.github/workflows/ci_package.yml" | |
| release: | |
| needs: ["package"] | |
| if: "${{ startsWith(github.ref, 'refs/tags/') }}" | |
| uses: "./.github/workflows/ci_release.yml" | |
| secrets: | |
| release-token: "${{ secrets.GITHUB_TOKEN }}" |