Skip to content

Separates the configuration of settings into its function. #55

Separates the configuration of settings into its function.

Separates the configuration of settings into its function. #55

Workflow file for this run

name: Test suite
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.8', 'pypy-3.9']
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Setup Redis
uses: zhulik/[email protected]
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox tox-gh-actions
pip install .
- name: Run test suite with tox
run: tox