mirror of
https://github.com/kazhala/dotbare
synced 2024-11-06 09:20:25 +00:00
17 lines
461 B
YAML
17 lines
461 B
YAML
version: 0.2
|
|
|
|
phases:
|
|
install:
|
|
commands:
|
|
- echo Installing shellcheck ...
|
|
- apt-get update -y
|
|
- apt-get install shellcheck -y
|
|
build:
|
|
commands:
|
|
- echo Checking script compliance
|
|
- ./shellcheck.sh
|
|
- echo Building docker image ...
|
|
- docker image build -t kazhala/dotbare:test -f tests/Dockerfile .
|
|
- echo Running bats unittest ...
|
|
- docker container run -i --rm --name dotbare kazhala/dotbare:test
|