ci: mark invalid files #157
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: CI | |
on: | |
push: | |
branches: [main] | |
paths: | |
- grammar.js | |
- src/** | |
- test/** | |
- bindings/** | |
- binding.gyp | |
pull_request: | |
paths: | |
- grammar.js | |
- src/** | |
- test/** | |
- bindings/** | |
- binding.gyp | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test parser | |
runs-on: ${{matrix.os}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-14] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install tree-sitter CLI | |
uses: tree-sitter/setup-action/cli@v1 | |
- name: Run tests | |
uses: tree-sitter/parser-test-action@v2 | |
with: | |
test-rust: ${{runner.os == 'Linux'}} | |
test-node: true | |
test-python: true | |
test-go: true | |
test-swift: ${{runner.os == 'macOS'}} | |
- name: Clone apisix corpus | |
uses: actions/checkout@v4 | |
with: | |
path: examples/apisix | |
repository: apache/apisix | |
sparse-checkout: apisix/ | |
- name: Clone kong corpus | |
uses: actions/checkout@v4 | |
with: | |
path: examples/kong | |
repository: Kong/kong | |
sparse-checkout: kong/ | |
- name: Clone lua corpus | |
uses: actions/checkout@v4 | |
with: | |
path: examples/lua | |
repository: lua/lua | |
sparse-checkout: testes/ | |
- name: Clone luvit corpus | |
uses: actions/checkout@v4 | |
with: | |
path: examples/luvit | |
repository: luvit/luvit | |
- name: Clone neovim corpus | |
uses: actions/checkout@v4 | |
with: | |
path: examples/neovim | |
repository: neovim/neovim | |
sparse-checkout-cone-mode: false | |
sparse-checkout: |- | |
/test/**/*.lua | |
/scripts/**/*.lua | |
/runtime/**/*.lua | |
- name: Clone xmake corpus | |
uses: actions/checkout@v4 | |
if: runner.os != 'Windows' | |
with: | |
path: examples/xmake | |
repository: xmake-io/xmake | |
- name: Parse examples | |
uses: tree-sitter/parse-action@v4 | |
with: | |
files: |- | |
examples/apisix/**/*.lua | |
examples/kong/**/*.lua | |
examples/lua/**/*.lua | |
examples/luvit/**/*.lua | |
examples/neovim/**/*.lua | |
examples/xmake/**/*.lua | |
# FIXME: these fail to parse on Windows | |
!examples/lua/testes/api.lua | |
!examples/lua/testes/calls.lua | |
!examples/lua/testes/db.lua | |
invalid-files: |- | |
examples/neovim/test/functional/fixtures/lua/syntax_error.lua | |
# FIXME: neovim/neovim#30882 | |
examples/neovim/runtime/lua/vim/_meta/vimfn.lua | |
fuzz: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Check for scanner changes | |
id: scanner-changes | |
run: |- | |
if git diff --quiet HEAD^ -- src/scanner.c; then | |
printf 'changed=false\n' >> "$GITHUB_OUTPUT" | |
else | |
printf 'changed=true\n' >> "$GITHUB_OUTPUT" | |
fi | |
- name: Fuzz parser | |
uses: tree-sitter/fuzz-action@v4 | |
if: steps.scanner-changes.outputs.changed == 'true' |