Skip to content

Merge pull request #239 from rnc/ISSUE220 #83

Merge pull request #239 from rnc/ISSUE220

Merge pull request #239 from rnc/ISSUE220 #83

Workflow file for this run

name: Squash tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup
run: |
sudo apt-get update
pip install -U pip
pip install "tox<4.0.0"
- name: Info
run: |
docker version
docker info
- name: Run tests
run: |
PV=${{ matrix.python-version }}
echo "Running tests for Python version $PV ( ${PV/./} )"
make test-py"${PV/./}"