13 lines
210 B
YAML
13 lines
210 B
YAML
|
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/
|