mypy.yml 295 B

123456789101112131415
  1. name: Mypy
  2. on:
  3. pull_request:
  4. push:
  5. branches: ["main"]
  6. jobs:
  7. mypy:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. - uses: actions/setup-python@v2
  12. with:
  13. python-version: '3.6'
  14. - run: python -m pip install -e .[dev]
  15. - run: mypy