nf-core_modules/.github/workflows/ucsc_bedgraphtobigwig.yml

40 lines
1,010 B
YAML
Raw Normal View History

2021-01-12 15:40:12 +00:00
name: ucsc_bedgraphtobigwig
on:
push:
paths:
- software/ucsc/bedgraphtobigwig/**
- .github/workflows/ucsc_bedgraphtobigwig.yml
- tests/software/ucsc/**
pull_request:
paths:
- software/ucsc/bedgraphtobigwig/**
- .github/workflows/ucsc_bedgraphtobigwig.yml
- tests/software/ucsc/**
jobs:
ci_test:
runs-on: ubuntu-latest
strategy:
matrix:
nxf_version: [20.11.0-edge]
env:
NXF_ANSI_LOG: false
steps:
- uses: actions/checkout@v2
- name: Install Nextflow
env:
NXF_VER: ${{ matrix.nxf_version }}
run: |
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: python -m pip install --upgrade pip pytest-workflow
# Test the module
- run: pytest --tag ucsc_bedgraphtobigwig --symlink --wt 2