Print hello world

This commit is contained in:
Daniel Cosme
2026-02-13 13:28:32 -05:00
parent 918d8d25b8
commit 474e63713d
3 changed files with 15 additions and 0 deletions

5
action.yaml Normal file
View File

@@ -0,0 +1,5 @@
name: "Simple Go Action"
description: "A simple Gitea action written in go"
runs:
using: "go"
main: "main.go"

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module git.danicos.dev/actions/simple-go-action
go 1.25.6

7
main.go Normal file
View File

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