kubeless/.travis.yml

10 lines
174 B
YAML
Raw Normal View History

2019-05-16 17:46:44 +02:00
language: python
2019-05-16 17:40:23 +02:00
dist: xenial
addons:
apt:
update: true
packages: shellcheck
2019-05-16 17:48:36 +02:00
script: "for file in $(find $HOME -type f); do shellcheck --format=gcc $file; done;"