From bb6ab6db1f1c7acd66cde1fce85b717eceb5e81d Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Fri, 28 Jul 2023 18:23:16 +0200 Subject: [PATCH] Only use newer python versions for some tests --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d2c9280a..5e4aebc1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,7 @@ jobs: # even when there is a failure. fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: [3.9] node-version: [14.x] tests: - ':lint:python:client:common:smoke:' @@ -28,6 +28,11 @@ jobs: - ':nbrowser-^[M-O]:' - ':nbrowser-^[P-S]:' - ':nbrowser-^[^A-S]:' + include: + - tests: ':lint:python:client:common:smoke:' + python-version: '3.10' + - tests: ':lint:python:client:common:smoke:' + python-version: '3.11' steps: - uses: actions/checkout@v3