Merge pull request #21 from vrothberg/enable-ci

Enable ci
This commit is contained in:
Valentin Rothberg 2019-09-11 11:06:36 +02:00 committed by GitHub
commit e6560ab399
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

9
.travis.yml Normal file
View file

@ -0,0 +1,9 @@
sudo: required
before_install:
- sudo add-apt-repository ppa:projectatomic/ppa --yes
- sudo apt-get update -qq
- sudo apt-get install -qq shellcheck skopeo
script:
- make validate

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
SRC := ./BuildSourceImage.sh
all: validate
.PHONY: validate
validate: $(SRC)
shellcheck -a $(SRC)