-
Notifications
You must be signed in to change notification settings - Fork 21
34 lines (30 loc) · 779 Bytes
/
ci.yml
File metadata and controls
34 lines (30 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up tree-sitter
uses: tree-sitter/setup-action/cli@v2
with:
tree-sitter-ref: v0.26.8
- name: Run tests
uses: tree-sitter/parser-test-action@v3
with:
test-rust: true
test-node: false # https://github.com/tree-sitter/node-tree-sitter/issues/268
test-python: true
test-go: true