nf-core_modules/.github/workflows/cutadapt.yml

30 lines
786 B
YAML
Raw Normal View History

2020-03-06 14:31:44 +00:00
name: cutadapt
on:
push: {}
pull_request:
paths: tools/cutadapt/*
jobs:
run_ci_test:
runs-on: ubuntu-latest
steps:
# Check out the repository
2020-03-06 14:41:37 +00:00
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
2020-03-06 14:31:44 +00:00
- name: Install Nextflow
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
# Test the module
2020-03-06 14:50:29 +00:00
- run: |
cd tools/cutadapt/sort/test_paired/
nextflow run . -ansi-log false