Skip to content

Update README.md

Update README.md #132

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install pipenv
pipenv install --dev --ignore-pipfile
- name: Install pre-commit
run: pip install pre-commit
- name: Run pre-commit hooks
run: pre-commit install && pre-commit run --all-files --show-diff-on-failure