You've already forked devops-exercises
mirror of
https://github.com/bregman-arie/devops-exercises.git
synced 2025-07-06 23:36:36 +02:00
6 lines
152 B
Bash
6 lines
152 B
Bash
![]() |
#!/bin/bash
|
||
|
# These are the same steps we are running in Travis CI
|
||
|
|
||
|
python tests/syntax_checker.py
|
||
|
flake8 --max-line-length=100 . && echo "PEP8 Passed"
|