chore(ci): bump timeout from 30s to 60s

This commit is contained in:
Quentin McGaw
2026-03-13 17:52:48 +00:00
parent 4e5d4f7793
commit f0cbcbb60d
+1 -1
View File
@@ -17,7 +17,7 @@ import (
func ptrTo[T any](v T) *T { return &v }
func simpleTest(ctx context.Context, env []string, logger Logger) error {
const timeout = 30 * time.Second
const timeout = 60 * time.Second
ctx, cancel := context.WithTimeout(ctx, timeout)
defer cancel()