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