From a4cc55e14029e778b87ea8591dbbb8976d302133 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Thu, 7 Jan 2021 19:59:16 +0100 Subject: [PATCH] Run Python 3.3 tests in the python:3.3 container from Docker Hub --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c59d507..fffd508 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,3 +26,19 @@ jobs: # Use GitHub's Linux Docker host runs-on: ubuntu-latest + + py33-test: + name: Python 3.3 test + container: python:3.3 + steps: + - uses: actions/checkout@v2 + - name: Run tests + env: + CFLAGS: "-Werror -Wall -Wno-error=strict-aliasing" + run: | + CFLAGS="$CFLAGS -std=c90" make test-python + CFLAGS="$CFLAGS -std=c99" make test-python + make test-python-cpp + + # Use GitHub's Linux Docker host + runs-on: ubuntu-latest