mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2024-11-24 08:22:12 +02:00
6 lines
168 B
Bash
Executable File
6 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
# These are the same steps we are running in Travis CI
|
|
|
|
python $(dirname "$0")/../tests/syntax_lint.py
|
|
flake8 --max-line-length=100 . && echo "PEP8 Passed"
|