We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 541d842 commit 929c3d4Copy full SHA for 929c3d4
.github/workflows/ci.yml
@@ -16,14 +16,25 @@ on:
16
- bindings/**
17
- binding.gyp
18
19
+concurrency:
20
+ group: ${{github.workflow}}-${{github.ref}}
21
+ cancel-in-progress: true
22
+
23
jobs:
24
test:
- runs-on: ubuntu-latest
25
+ name: Test parser
26
+ runs-on: ${{matrix.os}}
27
+ strategy:
28
+ fail-fast: false
29
+ matrix:
30
+ os: [ubuntu-latest, windows-latest, macos-14]
31
steps:
32
- name: Checkout repository
33
uses: actions/checkout@v4
34
35
- name: Set up tree-sitter
36
uses: tree-sitter/setup-action/cli@v2
37
38
- name: Run tests
39
uses: tree-sitter/parser-test-action@v2
40
with:
0 commit comments