Skip to content

Commit

Permalink
add: show results in CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse committed Oct 22, 2020
1 parent dc85282 commit 39753c8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
- name: Run pipeline with test data
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test,docker
- name: Show results
run: ls -lR results

aligner:
name: Run aligner tests
Expand All @@ -51,6 +53,8 @@ jobs:
NXF_VER: '20.07.1'
- name: Run ${{ matrix.profile }} test
run: nextflow run ${GITHUB_WORKSPACE} -profile test,docker --aligner ${{ matrix.aligner }}
- name: Show results
run: ls -lR results

germline:
name: Run input from a folder test and restart from step tests
Expand All @@ -71,14 +75,24 @@ jobs:
NXF_VER: '20.07.1'
- name: Get test data
run: git clone --single-branch --branch sarek https://github.com/nf-core/test-datasets.git data
- name: Show results
run: ls -lR results
- name: Run germline test with ${{ matrix.markduplicates }} --step mapping
run: nextflow run ${GITHUB_WORKSPACE} -profile test,docker ${{ matrix.markduplicates }} --input data/testdata/tiny/normal --save_bam_mapped
- name: Show results
run: ls -lR results
- name: Run germline test with ${{ matrix.markduplicates }} --step prepare_recalibration
run: nextflow run ${GITHUB_WORKSPACE} -profile test,docker ${{ matrix.markduplicates }} --input=false --step prepare_recalibration -resume
- name: Show results
run: ls -lR results
- name: Run germline test with ${{ matrix.markduplicates }} --step recalibrate
run: nextflow run ${GITHUB_WORKSPACE} -profile test,docker ${{ matrix.markduplicates }} --input=false --step recalibrate -resume
- name: Show results
run: ls -lR results
- name: Run germline test with ${{ matrix.markduplicates }} --step variantCalling
run: nextflow run ${GITHUB_WORKSPACE} -profile test,docker ${{ matrix.markduplicates }} --input=false --step variantCalling
- name: Show results
run: ls -lR results

# annotation:
# env:
Expand Down Expand Up @@ -172,3 +186,5 @@ jobs:
NXF_VER: '20.07.1'
- name: Run ${{ matrix.tool }} test
run: nextflow run ${GITHUB_WORKSPACE} -profile test_tool,docker --tools ${{ matrix.tool }} ${{ matrix.intervals }}
- name: Show results
run: ls -lR results

0 comments on commit 39753c8

Please sign in to comment.