test also python-oldest before matrix
This commit is contained in:
46
.github/workflows/test.yml
vendored
46
.github/workflows/test.yml
vendored
@@ -3,7 +3,7 @@ on: [push, pull_request]
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
test-ubuntu-latest-python-latest:
|
test-ubuntu-python-newest:
|
||||||
needs: lint
|
needs: lint
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
@@ -20,8 +20,25 @@ jobs:
|
|||||||
- name: Test with latest Python on Ubuntu
|
- name: Test with latest Python on Ubuntu
|
||||||
run: tox -c pyproject.toml -e py
|
run: tox -c pyproject.toml -e py
|
||||||
|
|
||||||
test-python-latest:
|
test-ubuntu-python-oldest:
|
||||||
needs: test-ubuntu-latest-python-latest
|
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:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest]
|
os: [macos-latest, windows-latest]
|
||||||
@@ -37,12 +54,29 @@ jobs:
|
|||||||
- name: Test with latest Python on other OS
|
- name: Test with latest Python on other OS
|
||||||
run: tox -c pyproject.toml -e py
|
run: tox -c pyproject.toml -e py
|
||||||
|
|
||||||
test:
|
test-otheros-python-oldest:
|
||||||
needs: test-python-latest
|
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:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
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:
|
exclude:
|
||||||
- os: windows-latest
|
- os: windows-latest
|
||||||
python-version: 'pypy-3.9'
|
python-version: 'pypy-3.9'
|
||||||
|
|||||||
Reference in New Issue
Block a user