Skip to content

update library to latest #84

update library to latest

update library to latest #84

Workflow file for this run

name: Lint
on:
push:
branches: [ "**" ]
pull_request:
branches: [ master ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with black
run: |
black . -l 79 --check
- name: Lint with flake8
run: |
flake8 --count --show-source --statistics
- name: Lint with isort
run: |
isort -c -df