-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a7c712
commit 2d0afcd
Showing
3 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: Bug report - General | ||
about: Create a report to help us improve | ||
title: "[BUG]" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Clone '...' | ||
2. Call '...' in the command-line | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Architecture** | ||
- OS: [e.g. Linux] | ||
- Tree-sitter Version: [e.g. 0.20.8] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
name: Bug report - Parsing | ||
about: Describe an unexpected parsing issue | ||
title: "[PARSE BUG]" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Summary | ||
A clear and concise description of what the bug is. | ||
|
||
# Details | ||
## tree-sitter-cli | ||
Given this Objdump file | ||
|
||
<!-- Insert a Objdump file here or link to a GitHub gist example --> | ||
`tree-sitter parse /the/file.usda` | ||
|
||
### Expected Parse | ||
<!-- Insert the text output that you expected here --> | ||
```scm | ||
(module | ||
(... | ||
(good_stuff ...))) | ||
``` | ||
|
||
### Actual Parse | ||
<!-- Insert what `tree-sitter parse` returned --> | ||
```scm | ||
(module | ||
(... | ||
(ERROR ...))) | ||
``` | ||
|
||
## General | ||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Architecture** | ||
- OS: [e.g. Linux] | ||
- Tree-sitter Version: [e.g. 0.20.8] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Build/test | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- "**" | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [macos-latest, ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 14 | ||
- run: npm install | ||
- run: npm test | ||
|
||
test_windows: | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: 14 | ||
- run: npm install | ||
- run: npm run-script test-windows |