Skip to content

Code formatting

Code formatting #5

Workflow file for this run

name: mypy
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: mypy
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install mypy
- run: mypy --strict $(git ls-files '*.py')