From 5ace857c122a6509a5109cc4b664a3794df34f9a Mon Sep 17 00:00:00 2001 From: Andreas Maier Date: Fri, 23 Dec 2022 13:52:27 +0100 Subject: [PATCH] Changed coveralls workflow to run Pythpn 3.5/3.6 on ubuntu-20.04 Details: * Github Actions change ubuntu-latest recently to now be Ubuntu 22.04, and Python 3.5 and 3.6 are no longer provided by GitHub Actions on that Ubuntu version. This change fixes that by using ubuntu-20.04 for those Python versions. Signed-off-by: Andreas Maier --- .github/workflows/pythonpackage.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index ca4f2c0d..edb623fb 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -4,11 +4,17 @@ on: [push, pull_request] jobs: build: - runs-on: ubuntu-latest strategy: max-parallel: 6 matrix: - python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10'] + os: [ubuntu-latest] + include: + - python-version: '3.5' + os: ubuntu-20.04 + - python-version: '3.6' + os: ubuntu-20.04 + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3