Skip to content

Fix bugs and add more examples (#20) #42

Fix bugs and add more examples (#20)

Fix bugs and add more examples (#20) #42

Workflow file for this run

name: lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
flake8-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: make lint