diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 5491c6f..cea8e96 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -12,12 +12,17 @@ on: # yamllint disable-line rule:truthy jobs: pytest: - timeout-minutes: 30 + timeout-minutes: 10 strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-13, windows-latest] + os: [ubuntu-latest, windows-latest] python-version: ["3.10", "3.11", "3.12"] + include: + - os: macos-13 + python-version: "3.11" + - os: macos-13 + python-version: "3.12" name: ${{ matrix.os }} - py${{ matrix.python-version }} runs-on: ${{ matrix.os }} defaults: