Skip to content

Fix to issues #5 and #6. #18

Fix to issues #5 and #6.

Fix to issues #5 and #6. #18

Workflow file for this run

name: Tox
on: [push, pull_request]
jobs:
linting:
runs-on: ubuntu-latest
name: Linting
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install Tox
run: |
python -m pip install --upgrade pip
pip install --upgrade tox
- name: Run Tox
run: tox