From f0c2202e0daae8143673090da3fb1ddad7c7ec23 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Fri, 13 Feb 2026 20:50:35 +0100 Subject: [PATCH] add 32-bit test --- .github/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f16e26f9..a1201cae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 # 32‑bit 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: