Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Update README.md

Update README.md #171

Workflow file for this run

name: Lint
on: [pull_request, push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run black
run: poetry run black . --target-version py39 --diff --check
- name: Run isort
run: poetry run isort . --check --diff --profile black