1
0
mirror of https://github.com/bregman-arie/devops-exercises.git synced 2025-07-06 23:36:36 +02:00
Files
devops-exercises/scripts/run_ci.sh

6 lines
168 B
Bash
Raw Normal View History

2019-12-23 18:37:33 +02:00
#!/bin/bash
# These are the same steps we are running in Travis CI
python $(dirname "$0")/../tests/syntax_lint.py
2019-12-23 18:37:33 +02:00
flake8 --max-line-length=100 . && echo "PEP8 Passed"