Skip to content

Fix running tests with Python 3.4 and 3.5 on CI #8

Fix running tests with Python 3.4 and 3.5 on CI

Fix running tests with Python 3.4 and 3.5 on CI #8

Workflow file for this run

name: Run all tests
on: [push]
jobs:
build_py34:
runs-on: ubuntu-20.04
container: python:3.4
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Show Python version
run: python -V
- name: Run the tests
run: python setup.py test -q
build_py35:
runs-on: ubuntu-20.04
container: python:3.5
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Show Python version
run: python -V
- name: Run the tests
run: python setup.py test -q
build_py3x:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Show Python version
run: python -V
- name: Run the tests
run: python setup.py test -q