hotfix(ci): bump container run timeout from 15s to 30s

This commit is contained in:
Quentin McGaw
2025-11-19 19:57:57 +00:00
parent 0afbb71634
commit 93567a7804

View File

@@ -17,7 +17,7 @@ import (
func ptrTo[T any](v T) *T { return &v }
func simpleTest(ctx context.Context, env []string) error {
const timeout = 15 * time.Second
const timeout = 30 * time.Second
ctx, cancel := context.WithTimeout(ctx, timeout)
defer cancel()