build: bump tree_sitter/core from e3c8263
to 21a517c
#470
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: [master] | |
paths: | |
- tree_sitter/** | |
- tests/** | |
pull_request: | |
paths: | |
- tree_sitter/** | |
- tests/** | |
workflow_dispatch: | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["3.10", "3.11", "3.12", "3.13"] | |
os: [ubuntu-latest, macos-13, windows-latest] | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Python ${{matrix.python}} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{matrix.python}} | |
- name: Lint | |
continue-on-error: true | |
run: pipx run ruff check . --output-format=github | |
- name: Build | |
run: pip install -v -e .[tests] | |
env: | |
CFLAGS: -Wextra -Og -g -fno-omit-frame-pointer | |
- name: Test | |
run: python -munittest -v | |
# FIXME: remove when the tests stop crashing | |
continue-on-error: ${{runner.os == 'Windows'}} |