This commit is contained in:
Torma Kristóf 2019-10-24 01:16:50 +02:00
parent dc3e951346
commit 45ea7e3e00
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
1 changed files with 20 additions and 0 deletions

20
.travis.yml Normal file
View File

@ -0,0 +1,20 @@
language: python
dist: xenial
cache: pip
addons:
apt:
update: true
packages: shellcheck
install:
- pip3 install pylint bandit mccabe
script:
- for file in $(find . -type f -name \"*.sh\"); do shellcheck --format=gcc $file; done;
- find . -name "*.py" -exec python3 -m py_compile '{}' \;
- find . -name "*.py" -exec pylint '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- bandit -r .