Some checks failed
Go CI with S3 Caching / build-and-test (push) Failing after 1m5s
11 lines
164 B
Go
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))
|
|
}
|