Skip to content

Commit ecbd2cf

Browse files
committed
Validate Dolos installation on MacOS
1 parent 50d7907 commit ecbd2cf

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/validation.yml

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

0 commit comments

Comments
 (0)