Skip to content

Release version 1.0.6 #340

Release version 1.0.6

Release version 1.0.6 #340

Workflow file for this run

name: Lint
on: [push, pull_request]
concurrency:
group: py-lint-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.10']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run linting
run: tox -e lint