From 31321c2017fc68ce86aaf05218ae3e6e44426591 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 2 Dec 2023 09:27:57 -0600 Subject: [PATCH] Add race detector to bug report template --- .github/ISSUE_TEMPLATE/bug_report.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dce293cf7..637113357 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -37,6 +37,8 @@ func main() { } ``` +Please run your example with the race detector enabled. For example, `go run -race main.go` or `go test -race`. + **Expected behavior** A clear and concise description of what you expected to happen.