From e3ceb303175ffcc4340747a0bad5ec074d270223 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 22 Jan 2026 08:45:30 +0100 Subject: [PATCH] test also python-oldest before matrix --- .github/workflows/test.yml | 46 +++++++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 20fc5c05..cd7bae74 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: - test-ubuntu-latest-python-latest: + test-ubuntu-python-newest: needs: lint strategy: matrix: @@ -20,8 +20,25 @@ jobs: - name: Test with latest Python on Ubuntu run: tox -c pyproject.toml -e py - test-python-latest: - needs: test-ubuntu-latest-python-latest + test-ubuntu-python-oldest: + needs: [lint, test-ubuntu-latest-python-newest] + strategy: + matrix: + os: [ubuntu-latest] + python-version: ['3.9'] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install Test dependencies + run: pip install tox + - name: Test with oldest Python on Ubuntu + run: tox -c pyproject.toml -e py + + test-otheros-python-newest: + needs: [lint, test-ubuntu-latest-python-newest] strategy: matrix: os: [macos-latest, windows-latest] @@ -37,12 +54,29 @@ jobs: - name: Test with latest Python on other OS run: tox -c pyproject.toml -e py - test: - needs: test-python-latest + test-otheros-python-oldest: + needs: [lint, test-ubuntu-latest-python-oldest] + strategy: + matrix: + os: [macos-latest, windows-latest] + python-version: ['3.9'] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + - name: Install Test dependencies + run: pip install tox + - name: Test with oldest Python on other OS + run: tox -c pyproject.toml -e py + + test-python-versions: + needs: [lint, test-otheros-python-oldest, test-otheros-python-newest, test-ubuntu-python-oldest, test-ubuntu-python-newest] strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11'] + python-version: ['3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10', 'pypy-3.11'] exclude: - os: windows-latest python-version: 'pypy-3.9'