mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
30 lines
654 B
YAML
30 lines
654 B
YAML
name: samtools_flagstat
|
|
on:
|
|
push:
|
|
paths:
|
|
- software/samtools/flagstat/**
|
|
- .github/workflows/samtools_flagstat.yml
|
|
- tests
|
|
pull_request:
|
|
paths:
|
|
- software/samtools/flagstat/**
|
|
- .github/workflows/samtools_flagstat.yml
|
|
- tests
|
|
|
|
jobs:
|
|
ci_test:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
NXF_ANSI_LOG: false
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Nextflow
|
|
run: |
|
|
export NXF_VER="20.07.1"
|
|
wget -qO- get.nextflow.io | bash
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
# Test the module
|
|
- run: nextflow run ./software/samtools/flagstat/test/ -profile docker
|