diff options
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65ccb164..780b0c0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] ## Doubles as the nox session + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -49,4 +49,4 @@ jobs: - name: Run tests and post coverage results env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: python -m nox --non-interactive --session ${{ matrix.python-version }} # Run nox for a single version of Python + run: python -m nox --non-interactive --session tests-${{ matrix.python-version }} # Run nox for a single version of Python |