blob: ec70dc6b1aeb28792d5ebdedc9fecdafeadd768a (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
language: python
cache: pip
python:
- "3.6"
- "3.7"
- "3.8"
- "3.8-dev"
- "nightly"
install:
- pip3 install mypy -r requirements.txt
script:
- mypy --ignore-missing-imports src ./bitbotd modules/
|