diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..1f652ed --- /dev/null +++ b/.drone.yml @@ -0,0 +1,8 @@ +kind: pipeline +name: hellodrone + +steps: +- name: build hello.go + image: golang + commands: + - go build \ No newline at end of file diff --git a/hello.go b/hello.go new file mode 100644 index 0000000..aa465c2 --- /dev/null +++ b/hello.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Printf("hello, world\n") +} \ No newline at end of file