Compare commits

..

2 Commits

Author SHA1 Message Date
Robert Jacob 25cf1465ea Add build. 2018-02-13 01:55:41 +01:00
Robert Jacob 56cb64e1a1 Commit source. 2018-02-13 01:54:22 +01:00
2 changed files with 13 additions and 0 deletions

6
.drone.yml Normal file
View File

@ -0,0 +1,6 @@
pipeline:
build:
image: golang:1.9
commands:
- go build
- go test

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("vim-go")
}