Skip to content

Update test runner and GitHub workflow #57

Update test runner and GitHub workflow

Update test runner and GitHub workflow #57

Workflow file for this run

name: Python test
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 3
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
steps:
- name: Install requirements
run: sudo apt-get install -y dialog
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox