Skip to content

Commit

Permalink
Run Python 3.3 tests in the python:3.3 container from Docker Hub
Browse files Browse the repository at this point in the history
  • Loading branch information
encukou committed Jan 7, 2021
1 parent 81a00b0 commit a4cc55e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a4cc55e

Please sign in to comment.