Validate Dolos installation on MacOS #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validation | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
windows: | |
name: "Install and run CLI" | |
runs-on: macos-latest | |
steps: | |
- name: Setup Node 📚 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Install dolos | |
run: | | |
npm install -g @dodona/dolos | |
dolos --version | |
- name: Prepare analysis | |
run: | | |
wget https://dolos.ugent.be/simple-dataset.zip | |
- name: Run analysis on samples | |
run: | | |
cd analysis | |
dolos -f csv simple-dataset.zip |