feat: use the array api in the scanner #278
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: CI | |
on: | |
push: | |
branches: ["*"] | |
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] | |
include: | |
- examples: | |
- { repo: 'numpy/numpy', path: 'examples/numpy' } | |
- { repo: 'django/django', path: 'examples/django' } | |
- { repo: 'pallets/flask', path: 'examples/flask' } | |
- { repo: 'python/cpython', path: 'examples/python' } | |
steps: | |
- name: Set up the repo | |
uses: tree-sitter/[email protected] | |
with: | |
node-version: ${{vars.NODE_VERSION}} | |
- name: Set up examples | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{matrix.examples.repo}} | |
path: ${{matrix.examples.path}} | |
- name: Run tests | |
uses: tree-sitter/[email protected] | |
with: | |
lint: true | |
test-library: ${{runner.os == 'Linux'}} | |
examples: | | |
examples/examples/**/*.py | |
!examples/cpython/Lib/test/badsyntax_3131.py | |
!examples/cpython/Lib/test/badsyntax_future8.py | |
!examples/cpython/Lib/test/test_compile.py | |
!examples/cpython/Tools/build/generate_re_casefix.py | |
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' |