add 32-bit test

This commit is contained in:
Peter Bieringer
2026-02-13 20:50:35 +01:00
parent a30e3641cf
commit f0c2202e0d

View File

@@ -20,6 +20,20 @@ jobs:
- name: Test with latest Python on Ubuntu
run: tox -c pyproject.toml -e py
test-ubuntu-python-newest-32bit:
name: Tests (32-bit Linux)
needs: [lint, test-ubuntu-python-newest]
runs-on: ubuntu-latest
container:
image: i386/python:3.14 # 32bit userland with Python
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install Test dependencies
run: pip install tox
- name: Test with newes Python on latest Ubuntu (32-bit)
run: tox -c pyproject.toml -e py
test-ubuntu-python-oldest:
needs: [lint, test-ubuntu-python-newest]
strategy: