Files
actions-go/main.go
Eric Liu 3bba1d1cd8
Some checks failed
Go CI with S3 Caching / build-and-test (push) Failing after 1m5s
feat(ci): add CI workflow e2e test with cold/warm builds
2026-05-19 21:07:46 -07:00

11 lines
164 B
Go

package main
import (
"fmt"
"time"
)
func main() {
fmt.Printf("Hello, Gitea Actions with Go caching on S3! Built at: %s\n", time.Now().Format(time.RFC3339))
}