Skip to content

🎉 Boilerplate with bunch of initial features [core, depends, pla… #8

🎉 Boilerplate with bunch of initial features [core, depends, pla…

🎉 Boilerplate with bunch of initial features [core, depends, pla… #8

Workflow file for this run

name: TypeCheck
on:
- push
jobs:
typecheck:
name: Type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4.0.0
with:
python-version: "3.10"
- name: Install tox
run: python -m pip install tox
- name: Run mypy
run: python -m tox -e typecheck