Skip to content

Changes to github actions, mypy #35

Changes to github actions, mypy

Changes to github actions, mypy #35

Workflow file for this run

name: Black lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
with:
options: "--check --verbose --diff"
src: "./src"