Commit bf9b746 1 parent 50d7907 commit bf9b746 Copy full SHA for bf9b746
File tree 2 files changed +37
-1
lines changed
2 files changed +37
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 12
12
"nan" : " ^2.19.0"
13
13
},
14
14
"devDependencies" : {
15
- "node-gyp" : " ^9.4 .0" ,
15
+ "node-gyp" : " ^10.1 .0" ,
16
16
"tree-sitter-cli" : " ^0.20.8"
17
17
}
18
18
}
You can’t perform that action at this time.
0 commit comments