Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update ci
  • Loading branch information
aspeddro committed Mar 3, 2025
commit 929c3d4de8f70002c80ee850627cc0a5a0ec0fb9
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,25 @@ on:
- bindings/**
- binding.gyp

concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
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: Set up tree-sitter
uses: tree-sitter/setup-action/cli@v2

- name: Run tests
uses: tree-sitter/parser-test-action@v2
with:
Expand Down
Loading