Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
120 changes: 0 additions & 120 deletions .github/workflows/pull_request.yml

This file was deleted.

20 changes: 18 additions & 2 deletions .github/workflows/push_main.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
on:
pull_request:
branches:
- main
push:
branches:
- main
- main
workflow_dispatch:
name: Tests
jobs:
test:
strategy:
fail-fast: false
matrix:
nextflow_version: ["21.04.3", "23.10.1"]
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- name: create artifacts dir to save test logs
run: mkdir artifacts
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
- name: Cache Miniconda Installation
id: cache-miniconda
uses: pat-s/[email protected]
Expand Down Expand Up @@ -80,6 +94,8 @@ jobs:
run: bash .github/scripts/install_conda.sh
- name: Install Nextflow
if: steps.cache-nextflow.outputs.cache-hit != 'true'
env:
NXF_VER: ${{ matrix.nextflow_version }}
run: bash .github/scripts/install_nextflow.sh
- name: Install ncbi-acc-download
if: steps.cache-miniconda.outputs.cache-hit != 'true'
Expand Down
3 changes: 1 addition & 2 deletions environments/environment.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
name: routine-qc
name: routine-sequence-qc
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- python=3
- fastqc=0.11.9
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ manifest {
description = 'Routine Sequence QC'
mainScript = 'main.nf'
nextflowVersion = '>=20.01.0'
version = '0.4.4'
version = '0.4.5'
}

params {
Expand Down
Loading