grim/convey

closing merged branch
expand-list
2017-10-03, Gary Kramlich
345a52ef04c6
closing merged branch
tasks:
# define our script task
script:
image: gliderlabs/alpine:edge
# if you need to override the default shell of /bin/sh you can use the
# shell attribute
shell: /bin/ash
# then just define your script as a list of strings
script:
- echo "hello from alpine"
- uptime
plans:
default:
stages:
- tasks: [script]