mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2026-02-04 23:59:11 +00:00
9 lines
162 B
YAML
9 lines
162 B
YAML
language: "python"
|
|
python:
|
|
- "3.8"
|
|
install:
|
|
- pip install flake8
|
|
script:
|
|
- flake8 flake8 --max-line-length=100 .
|
|
- python tests/syntax_checker.py
|