From 223adfdfdc72bd1e9cb2ef036c68586b61c98e0e Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Mon, 14 Oct 2024 00:31:46 +0300 Subject: [PATCH] Used the version of Ubuntu that still have Python 3.6 --- .github/workflows/tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7dd4f04..d136ee3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,30 +7,37 @@ concurrency: jobs: tests: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: include: - python-version: "3.6.15" + os: ubuntu-20.04 env: TOXENV: py36 - python-version: "3.7" + os: ubuntu-latest env: TOXENV: py - python-version: "3.8" + os: ubuntu-latest env: TOXENV: py - python-version: "3.9" + os: ubuntu-latest env: TOXENV: py - python-version: "3.10" + os: ubuntu-latest env: TOXENV: py - python-version: "3.11" + os: ubuntu-latest env: TOXENV: py - python-version: "3.12" + os: ubuntu-latest env: TOXENV: py