13 lines
143 B
YAML
13 lines
143 B
YAML
language: python
|
|
dist: xenial
|
|
python:
|
|
- "3.8"
|
|
|
|
install:
|
|
- pip install mypy
|
|
- pip install xtermcolor
|
|
|
|
script:
|
|
- make mypy
|
|
- make test
|