Skip to content

396 deps

396 deps #102

Workflow file for this run

name: flake8
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox tox-gh-actions
- name: Test
run: |
python --version
python -m tox -e flake8