feat(ci): add CI workflow e2e test with cold/warm builds
Some checks failed
Go CI with S3 Caching / build-and-test (push) Failing after 1m5s

This commit is contained in:
2026-05-19 21:07:46 -07:00
parent 0ddbcd4222
commit 3bba1d1cd8
2 changed files with 66 additions and 0 deletions

10
main.go Normal file
View File

@@ -0,0 +1,10 @@
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))
}