9 lines
133 B
YAML
9 lines
133 B
YAML
|
language: "python"
|
||
|
python:
|
||
|
- "3.8"
|
||
|
install:
|
||
|
- pip install flake8
|
||
|
script:
|
||
|
- flake8 .
|
||
|
- python tests/syntax_checker.py
|