2019-12-05 09:53:38 -05:00
|
|
|
name: FastQC
|
2019-12-05 09:44:10 -05:00
|
|
|
on:
|
2019-12-05 10:09:28 -05:00
|
|
|
push: {}
|
2019-12-05 09:44:10 -05:00
|
|
|
pull_request:
|
|
|
|
paths: tools/fastqc/*
|
|
|
|
|
|
|
|
jobs:
|
2019-12-05 10:03:00 -05:00
|
|
|
run_ci_test:
|
2019-12-05 09:44:10 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
# Check out the repository
|
|
|
|
- uses: actions/checkout@v1
|
2019-12-06 03:24:33 -05:00
|
|
|
submodules: true
|
2019-12-05 09:44:10 -05:00
|
|
|
|
2019-12-05 10:03:00 -05:00
|
|
|
- name: Install Nextflow
|
|
|
|
run: |
|
|
|
|
wget -qO- get.nextflow.io | bash
|
|
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
|
2019-12-05 09:44:10 -05:00
|
|
|
# Test the module
|
2019-12-05 16:20:02 -05:00
|
|
|
- run: nextflow run ./tools/fastqc/test/ -ansi-log false
|