From baef685d7229cc8688d92c76430a5e94eb9780ca Mon Sep 17 00:00:00 2001 From: Bryn Pickering <17178478+brynpickering@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:06:52 +0100 Subject: [PATCH] CI: Only run py39 and py310 on ubuntu (#491) --- .github/workflows/pr-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index a6ca10736..e6ad47517 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -27,8 +27,13 @@ jobs: test: strategy: matrix: - os: [windows-latest, ubuntu-latest, macos-latest] + os: [ubuntu-latest] py3version: ["9", "10", "11"] + include: + - os: windows-latest + py3version: "11" + - os: macos-latest + py3version: "11" fail-fast: false runs-on: ${{ matrix.os }} steps: