diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5229418..eae449e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,29 @@ jobs: name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }} runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + include: + - os: ubuntu-latest + python-version: "3.7" + - os: ubuntu-latest + python-version: "3.8" + - os: ubuntu-latest + python-version: "3.9" + - os: ubuntu-latest + python-version: "3.10" + - os: ubuntu-latest + python-version: "3.11" + - os: ubuntu-latest + python-version: "3.12" + - os: windows-latest + python-version: "3.7" + - os: windows-latest + python-version: "3.12" + - os: macos-latest + python-version: "3.7" + - os: macos-latest + python-version: "3.12" steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}