一个demo

This commit is contained in:
李寻欢 2023-03-29 14:45:00 +08:00
parent 6febe66c8f
commit fd4ee8a329
3 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1 @@
## Gitea Actions 测试仓库

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module runner_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!")
}