From 2fb0d3800dac7250b9d0f0ef40fc02ee4e4e12f6 Mon Sep 17 00:00:00 2001 From: Simon Deziel Date: Thu, 4 Jul 2024 16:09:27 -0400 Subject: [PATCH] github: test 4.0/edge on 22.04 and python 3.8 Python 3.8 was picked as it's the default python3 version on 20.04. Signed-off-by: Simon Deziel --- .github/workflows/tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6568e6f0..0bbc665c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,10 +36,16 @@ jobs: tests: name: Tests strategy: + fail-fast: false matrix: python-version: ["3.8", "3.10", "3.11", "3.12"] track: ["latest/edge", "5.21/edge", "5.0/edge"] os: ["24.04"] + include: + # 4.0/* isn't supported on 24.04 + - python-version: "3.8" + track: "4.0/edge" + os: "22.04" runs-on: ubuntu-${{ matrix.os }} steps: