diff --git a/.drone.yml b/.drone.yml index c2e00eb..21a2364 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,7 +1,9 @@ -pipeline: - hellodrone: - image: golang - commands: - - echo build start - - go build - - echo build end +kind: pipeline +name: hello-drone + +steps: +- name: build + image: golang + commands: + - go build + - go test