perf!: don't look for indent/dedent if comment is at current indent level #30
Workflow file for this run
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
name: Fuzz Parser | |
on: | |
push: | |
paths: | |
- src/scanner.c | |
pull_request: | |
paths: | |
- src/scanner.c | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Parser fuzzing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: vigoux/tree-sitter-fuzz-action@v1 | |
with: | |
language: python | |
external-scanner: src/scanner.c | |
time: 60 |