first commit for drone
Some checks are pending
continuous-integration/drone/push Build was killed

This commit is contained in:
2018-12-18 14:38:59 +08:00
parent feff965a99
commit 889c62e3fe
2 changed files with 15 additions and 0 deletions

8
.drone.yml Normal file
View File

@@ -0,0 +1,8 @@
kind: pipeline
name: hellodrone
steps:
- name: build hello.go
image: golang
commands:
- go build

7
hello.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("hello, world\n")
}