Skip to content

Commit bf9b746

Browse files
committed
Validation
1 parent 50d7907 commit bf9b746

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

.github/workflows/validation.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Validation
2+
on: [push]
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
jobs:
8+
macos:
9+
name: "Install and run CLI on ${{ matrix.os }}"
10+
strategy:
11+
matrix:
12+
os:
13+
- macos-14
14+
- macos-13
15+
- windows-latest
16+
- ubuntu-latest
17+
fail-fast: false
18+
runs-on: ${{ matrix.os }}
19+
steps:
20+
- name: Setup Node 📚
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: 21
24+
25+
- name: Install dolos
26+
run: |
27+
npm install -g @dodona/dolos
28+
dolos --version
29+
30+
- name: Prepare analysis
31+
run: |
32+
wget https://dolos.ugent.be/simple-dataset.zip
33+
34+
- name: Run analysis on samples
35+
run: |
36+
dolos simple-dataset.zip

parsers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"nan": "^2.19.0"
1313
},
1414
"devDependencies": {
15-
"node-gyp": "^9.4.0",
15+
"node-gyp": "^10.1.0",
1616
"tree-sitter-cli": "^0.20.8"
1717
}
1818
}

0 commit comments

Comments
 (0)