Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emi80 committed Jun 19, 2024
1 parent 47ab4f2 commit 2b7945a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
pipeline-test:
name: Pipeline tests
runs-on: ubuntu-latest
needs: workflow-test

needs: [module-test, workflow-test]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -50,7 +50,6 @@ jobs:
workflow-test:
name: Workflow tests
runs-on: ubuntu-latest
needs: module-test

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ manifest.mainScript = 'grape-pipeline.nf'

// small input dataset for testing
params {
index = "$baseDir/test-index.txt"
genome = "$baseDir/data/genome.fa"
annotation = "$baseDir/data/annotation.gtf"
index = "$baseDir/test-index.txt"
genome = "$baseDir/data/genome.fa"
annotation = "$baseDir/data/annotation.gtf"
}

params.containerRepo = "public.ecr.aws/biocontainers"
params.containerRepo = "quay.io/biocontainers"

// Docker is disabled by default and uses the following options when activated
docker {
Expand Down

0 comments on commit 2b7945a

Please sign in to comment.