github.com/switchupcb/yaegi@v0.10.2/.github/ISSUE_TEMPLATE/bug_report.yml (about) 1 name: Bug Report 2 description: Create a report to help us improve 3 4 body: 5 - type: markdown 6 attributes: 7 value: | 8 ⚠️ Make sure to browse the opened and closed issues before submit your issue. 9 10 - type: textarea 11 id: sample 12 attributes: 13 label: "The following program `sample.go` triggers an unexpected result" 14 value: | 15 package main 16 17 func main() { 18 // add a sample 19 } 20 render: go 21 validations: 22 required: true 23 24 - type: textarea 25 id: expected 26 attributes: 27 label: Expected result 28 description: |- 29 ```console 30 $ go run ./sample.go 31 // output 32 ``` 33 placeholder: $ go run ./sample.go 34 render: console 35 validations: 36 required: true 37 38 - type: textarea 39 id: got 40 attributes: 41 label: Got 42 description: |- 43 ```console 44 $ yaegi ./sample.go 45 // output 46 ``` 47 placeholder: $ yaegi ./sample.go 48 render: console 49 validations: 50 required: true 51 52 - type: input 53 id: version 54 attributes: 55 label: Yaegi Version 56 description: Can be a tag or a hash. 57 validations: 58 required: true 59 60 - type: textarea 61 id: additional 62 attributes: 63 label: Additional Notes 64 description: Use [Markdown syntax](https://help.github.com/articles/github-flavored-markdown) if needed. 65 validations: 66 required: false