mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
754701fb3a
* Add Gitpod Env * Add Gitpod Env * Change Gitpod to install only Nextflow and pytest-workflow Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
10 lines
295 B
YAML
10 lines
295 B
YAML
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
|
|
tasks:
|
|
- name: Install Nextflow
|
|
init: |
|
|
curl -s https://get.nextflow.io | bash
|
|
sudo mv nextflow /usr/local/bin
|
|
|
|
- name: Install pytest-workflow
|
|
init: |
|
|
pip install pytest-workflow
|