diff --git a/.drone.yml b/.drone.yml index a3c2495..698bd75 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,9 +1,14 @@ kind: pipeline -name: Test -type: docker steps: - - name: say-hello - image: busybox - commands: - - echo Test +- name: test + image: golang + commands: + - go test + - go build + +- name: publish + image: plugins/docker + settings: + repo: octocat/hello-world + tags: [ latest, 1.0, 1 ]