commit
e6560ab399
2 changed files with 16 additions and 0 deletions
9
.travis.yml
Normal file
9
.travis.yml
Normal 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
7
Makefile
Normal file
|
@ -0,0 +1,7 @@
|
|||
SRC := ./BuildSourceImage.sh
|
||||
|
||||
all: validate
|
||||
|
||||
.PHONY: validate
|
||||
validate: $(SRC)
|
||||
shellcheck -a $(SRC)
|
Loading…
Reference in a new issue