Default to loky executor on all platforms (fixes forkserver breakage on Python 3.14) #796
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: typeguard | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| typeguard: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Test with nox | |
| run: uv run --group nox nox -e pytest_typeguard |