mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
10 lines
146 B
YAML
10 lines
146 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "3.6"
|
||
|
install:
|
||
|
- pip install pytest mypy flake8
|
||
|
script:
|
||
|
- flake8
|
||
|
- mypy --ignore-missing-imports
|
||
|
- pytest -v
|