Skip to content

Commit c46c798

Browse files
authored
Remove defaults channel (#85)
* Remove `defaults` channel * Bump version * Update test workflow
1 parent ac5b8c3 commit c46c798

File tree

4 files changed

+20
-125
lines changed

4 files changed

+20
-125
lines changed

.github/workflows/pull_request.yml

-120
This file was deleted.

.github/workflows/push_main.yml renamed to .github/workflows/tests.yml

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,30 @@
11
on:
2+
pull_request:
3+
branches:
4+
- main
25
push:
36
branches:
4-
- main
7+
- main
8+
workflow_dispatch:
59
name: Tests
610
jobs:
711
test:
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
nextflow_version: ["21.04.3", "23.10.1"]
816
name: Run tests
917
runs-on: ubuntu-latest
1018
steps:
11-
- uses: actions/checkout@master
19+
- uses: actions/checkout@v4
1220
- name: create artifacts dir to save test logs
1321
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
1428
- name: Cache Miniconda Installation
1529
id: cache-miniconda
1630
uses: pat-s/[email protected]
@@ -80,6 +94,8 @@ jobs:
8094
run: bash .github/scripts/install_conda.sh
8195
- name: Install Nextflow
8296
if: steps.cache-nextflow.outputs.cache-hit != 'true'
97+
env:
98+
NXF_VER: ${{ matrix.nextflow_version }}
8399
run: bash .github/scripts/install_nextflow.sh
84100
- name: Install ncbi-acc-download
85101
if: steps.cache-miniconda.outputs.cache-hit != 'true'

environments/environment.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
name: routine-qc
1+
name: routine-sequence-qc
22
channels:
33
- conda-forge
44
- bioconda
5-
- defaults
65
dependencies:
76
- python=3
87
- fastqc=0.11.9

nextflow.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ manifest {
33
description = 'Routine Sequence QC'
44
mainScript = 'main.nf'
55
nextflowVersion = '>=20.01.0'
6-
version = '0.4.4'
6+
version = '0.4.5'
77
}
88

99
params {

0 commit comments

Comments
 (0)