From c0ac05fb322887a14d9834e31caaaeea797effea Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Mon, 6 Nov 2023 12:18:29 +0100 Subject: [PATCH] Update ci.yaml --- .github/workflows/ci.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cb9eb0bc5..4dfbb12ee 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - uses: pre-commit/action@v3.0.0 tests-core: - name: "py${{ matrix.python-version }} sphinx~=${{ matrix.sphinx-version }} ${{ matrix.os }}" + name: "Core py${{ matrix.python-version }} sphinx~=${{ matrix.sphinx-version }} ${{ matrix.os }}" runs-on: ${{ matrix.os }} strategy: fail-fast: false # Set on "false" to get the results of ALL builds @@ -45,13 +45,16 @@ jobs: python -m pytest -v --ignore=tests/benchmarks -m "not jstest" tests tests-js: - runs-on: "ubuntu-latest" + name: "JS py${{ matrix.python-version }} sphinx~=${{ matrix.sphinx-version }} ${{ matrix.os }}" + runs-on: ${{ matrix.os }} strategy: matrix: include: - - python-version: "3.8" + - os: "ubuntu-latest" + python-version: "3.8" sphinx-version: "5.0" - - python-version: "3.11" + - os: "ubuntu-latest" + python-version: "3.11" sphinx-version: "7.0" steps: - uses: actions/checkout@v4