Skip to content

Commit 6d201d0

Browse files
committed
Add GitHub Actions CI workflow
1 parent d4f44ea commit 6d201d0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
test:
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
fail-fast: true
12+
matrix:
13+
os: [ubuntu-latest, macos-latest] # windows-latest still not supported by tree-sitter/setup-action@v1
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: tree-sitter/setup-action@v1
17+
- run: tree-sitter generate
18+
- run: tree-sitter test
19+

0 commit comments

Comments
 (0)