21 lines
521 B
YAML
21 lines
521 B
YAML
|
|
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 .
|
|
|