diff --git a/.github/workflows/matrix-tests.yml b/.github/workflows/matrix-tests.yml index b34e21d1..220fe840 100644 --- a/.github/workflows/matrix-tests.yml +++ b/.github/workflows/matrix-tests.yml @@ -5,12 +5,15 @@ on: jobs: pre-release-matrix-test: strategy: + fail-fast: false matrix: os: [ubuntu-20.04, windows-latest, macos-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 + with: + depth: 0 - name: Set up Python uses: actions/setup-python@v5 with: @@ -18,6 +21,6 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e .[test,api] + pip install -e .[test] - name: Run tests run: python run_tests.py dev