Skip to content

Commit 9556076

Browse files
Add GitHub action workflow
1 parent 5557841 commit 9556076

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/ci.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
test:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
fail-fast: true
14+
matrix:
15+
os: [ubuntu-latest, windows-latest, macos-14]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Set up tree-sitter
20+
uses: tree-sitter/setup-action/cli@v1
21+
- name: Run tests
22+
uses: tree-sitter/parser-test-action@v2

0 commit comments

Comments
 (0)