diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a203b69..3d565d6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10', '3.11', '3.12', '3.13'] + python-version: ['3.10', '3.11', '3.12'] + fail-fast: false steps: - uses: actions/checkout@v4 @@ -31,9 +32,9 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/pypoetry - key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} + key: ${{ runner.os }}-poetry-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} restore-keys: | - ${{ runner.os }}-poetry- + ${{ runner.os }}-poetry-${{ matrix.python-version }}- - name: Install dependencies run: |