Skip to content

[feat] add basic template #2

[feat] add basic template

[feat] add basic template #2

Workflow file for this run

name: Python Check
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Python Check
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install --upgrade pip
- run: pip install "black<23" pylint==v3.0.0a3 mypy==v0.902
- run: black --diff --check $(git ls-files '*.py')
- run: mypy --strict $(git ls-files '*.py')