cosmetics

This commit is contained in:
Peter Bieringer
2026-03-01 09:38:45 +01:00
parent 70fe74f3fa
commit e917e145ad

View File

@@ -6,12 +6,16 @@ jobs:
test-ubuntu-python-newest: test-ubuntu-python-newest:
name: Test Ubuntu:latest Python:newest name: Test Ubuntu:latest Python:newest
needs: lint needs: lint
runs-on: ubuntu-latest strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.14']
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.14' python-version: ${{ matrix.python-version }}
- name: Install Test dependencies - name: Install Test dependencies
run: pip install tox run: pip install tox
- name: Test with newest Python on latest Ubuntu - name: Test with newest Python on latest Ubuntu
@@ -20,9 +24,13 @@ jobs:
test-python-32bit: test-python-32bit:
name: Test Ubuntu:latest Python:32-bit name: Test Ubuntu:latest Python:32-bit
needs: [lint, test-ubuntu-python-newest] needs: [lint, test-ubuntu-python-newest]
runs-on: ubuntu-latest strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
runs-on: ${{ matrix.os }}
container: container:
image: i386/python:3.11 image: i386/python:${{ matrix.python-version }}
volumes: volumes:
- /home/runner/work/_temp:/__e/node20 - /home/runner/work/_temp:/__e/node20
- /home/runner/work/_temp:/__e/node24 - /home/runner/work/_temp:/__e/node24
@@ -62,12 +70,16 @@ jobs:
test-ubuntu-python-oldest: test-ubuntu-python-oldest:
name: Test Ubuntu:latest Python:oldest name: Test Ubuntu:latest Python:oldest
needs: [lint, test-ubuntu-python-newest, test-python-32bit] needs: [lint, test-ubuntu-python-newest, test-python-32bit]
runs-on: ubuntu-latest strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.9']
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: '3.9' python-version: ${{ matrix.python-version }}
- name: Install Test dependencies - name: Install Test dependencies
run: pip install tox run: pip install tox
- name: Test with oldest Python on Ubuntu - name: Test with oldest Python on Ubuntu