File tree 4 files changed +20
-125
lines changed
4 files changed +20
-125
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
on :
2
+ pull_request :
3
+ branches :
4
+ - main
2
5
push :
3
6
branches :
4
- - main
7
+ - main
8
+ workflow_dispatch :
5
9
name : Tests
6
10
jobs :
7
11
test :
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ nextflow_version : ["21.04.3", "23.10.1"]
8
16
name : Run tests
9
17
runs-on : ubuntu-latest
10
18
steps :
11
- - uses : actions/checkout@master
19
+ - uses : actions/checkout@v4
12
20
- name : create artifacts dir to save test logs
13
21
run : mkdir artifacts
22
+ - name : Setup Java
23
+ uses : actions/setup-java@v4
24
+ with :
25
+ java-version : ' 11'
26
+ distribution : ' temurin'
27
+ architecture : x64
14
28
- name : Cache Miniconda Installation
15
29
id : cache-miniconda
16
30
80
94
run : bash .github/scripts/install_conda.sh
81
95
- name : Install Nextflow
82
96
if : steps.cache-nextflow.outputs.cache-hit != 'true'
97
+ env :
98
+ NXF_VER : ${{ matrix.nextflow_version }}
83
99
run : bash .github/scripts/install_nextflow.sh
84
100
- name : Install ncbi-acc-download
85
101
if : steps.cache-miniconda.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change 1
- name : routine-qc
1
+ name : routine-sequence- qc
2
2
channels :
3
3
- conda-forge
4
4
- bioconda
5
- - defaults
6
5
dependencies :
7
6
- python=3
8
7
- fastqc=0.11.9
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ manifest {
3
3
description = ' Routine Sequence QC'
4
4
mainScript = ' main.nf'
5
5
nextflowVersion = ' >=20.01.0'
6
- version = ' 0.4.4 '
6
+ version = ' 0.4.5 '
7
7
}
8
8
9
9
params {
You can’t perform that action at this time.
0 commit comments