[ENH] Add gpu local tracking #170
Workflow file for this run
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: TractoFlow CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
env: | |
NXF_VER: ${{ matrix.nxf_ver }} | |
NXF_ANSI_LOG: false | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
nxf_ver: ['19.04.0', '20.04.1', '21.10.6'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Nextflow | |
run: | | |
wget -qO- get.nextflow.io | bash | |
sudo mv nextflow /usr/local/bin/ | |
- name: Pull docker image | |
run: | | |
docker pull scilus/scilus:latest | |
- name: Run pipeline | |
run: | | |
nextflow run ${GITHUB_WORKSPACE} --help -with-docker scilus/scilus:latest |