Add initial
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Kasper Juul Hermansen 2022-10-28 23:36:54 +02:00
commit 9373fb62e4
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
3 changed files with 19 additions and 0 deletions

9
.drone.yml Normal file
View File

@ -0,0 +1,9 @@
type: docker
kind: pipeline
name: "drone-dagger-test"
steps:
- name: "build"
image: harbor.front.kjuulh.io/docker-proxy/library/golang
commands:
- "go run main.go"

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module drone-dagger-test
go 1.19

7
main.go Normal file
View File

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