init commit

This commit is contained in:
shynd 2024-04-12 23:44:48 +02:00
commit d0d31b4e63
No known key found for this signature in database
GPG Key ID: 31DC000B2E21D69D
4 changed files with 20 additions and 0 deletions

9
.drone.yml Normal file
View File

@ -0,0 +1,9 @@
kind: pipeline
name: default
steps:
- name: test
image: golang
commands:
- go test
- go build

1
README.md Normal file
View File

@ -0,0 +1 @@
# test

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module g.r-io.lu/shynd/test
go 1.20

7
main.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}