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
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,50 @@ jobs:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

- name: Free disk space
run: |
docker system prune -af || true
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/lib/android || true
sudo apt-get clean
df -h

# Run tests sequentialy
- name: test short single
run: nextflow run -ansi-log -profile docker,test_illumina_single aline.nf

- name: Cleanup Docker
run: docker system prune -af || true

- name: test short single cram
run: nextflow run -ansi-log -profile docker,test_illumina_single aline.nf --cram --filter_unmapped

- name: Cleanup Docker
run: docker system prune -af || true

- name: test short paired
run: nextflow run -ansi-log -profile docker,test_illumina_paired aline.nf

- name: Cleanup Docker
run: docker system prune -af || true

- name: test ont
run: nextflow run -ansi-log -profile docker,test_ont aline.nf

- name: Cleanup Docker
run: docker system prune -af || true

- name: test pacbio
run: nextflow run -ansi-log -profile docker,test_pacbio aline.nf

- name: Cleanup Docker
run: docker system prune -af || true

- name: test csv
run: nextflow run -ansi-log -profile docker,test_csv aline.nf

- name: Cleanup Docker
run: docker system prune -af || true

- name: test remote
run: nextflow run -ansi-log -profile docker,test_remote aline.nf
3 changes: 3 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ params {
monochrome_logs = false
}

// Include local resources by default
includeConfig "$baseDir/config/ressources/local.config"

profiles {

itrop {
Expand Down
Loading