.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-04-24 11:07:57 +01:00
parent 349b744cfc
commit 10cec72724
1 changed files with 14 additions and 1 deletions

View File

@ -1,4 +1,17 @@
load("@this//starlark:steps.star", "steps")
def steps():
return {
"kind": "pipeline",
"name": "build",
"steps": [
{
"name": "build",
"image": "alpine",
"commands": [
"echo hello 'star lark'",
],
},
],
}
def main(ctx):
return steps()