From fec2e0a7549419a764bf86ebf25adcac6cb8b651 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 5 Jun 2024 23:08:26 +0200 Subject: [PATCH] Make GitHub Actions cover oldest and youngest Pythons alive For an overview of Pythons alive: https://endoflife.date/python --- .github/workflows/build.yml | 2 +- .github/workflows/testOnly.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79d2f6b..1202450 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10'] + python-version: ['3.8', '3.12'] # oldest and youngest Pythons alive steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/testOnly.yml b/.github/workflows/testOnly.yml index 477a56a..138796d 100644 --- a/.github/workflows/testOnly.yml +++ b/.github/workflows/testOnly.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10'] + python-version: ['3.8', '3.12'] # oldest and youngest Pythons alive steps: - uses: actions/checkout@v4 with: