2021-04-09 06:58:43 +00:00
|
|
|
name: nf-core linting
|
|
|
|
# This workflow is triggered on pushes and PRs to the repository.
|
|
|
|
# It runs the `nf-core lint` tests to ensure that the module code meets the nf-core guidelines
|
2021-09-27 06:03:30 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
2021-04-09 06:58:43 +00:00
|
|
|
jobs:
|
|
|
|
changes:
|
|
|
|
name: Check for changes
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
# Expose matched filters as job 'modules' output variable
|
|
|
|
modules: ${{ steps.filter.outputs.changes }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- uses: dorny/paths-filter@v2
|
|
|
|
id: filter
|
|
|
|
with:
|
2021-07-07 09:10:18 +00:00
|
|
|
filters: "tests/config/pytest_modules.yml"
|
2021-04-09 06:58:43 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
name: ${{ matrix.tags }}
|
|
|
|
needs: changes
|
|
|
|
if: needs.changes.outputs.modules != '[]'
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-07-02 12:15:32 +00:00
|
|
|
tags: ["${{ fromJson(needs.changes.outputs.modules) }}"]
|
2021-04-09 06:58:43 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
|
|
|
|
- name: Install pip
|
|
|
|
run: python -m pip install --upgrade pip
|
|
|
|
|
|
|
|
# FIXME: Remove this when nf-core modules lint stabilizes and install stable release
|
|
|
|
- name: Install nf-core tools development version
|
2021-11-18 18:09:09 +00:00
|
|
|
run: python -m pip install --upgrade --force-reinstall git+https://github.com/nf-core/tools.git@dev
|
2021-04-09 06:58:43 +00:00
|
|
|
|
|
|
|
- name: Install Nextflow
|
|
|
|
env:
|
|
|
|
CAPSULE_LOG: none
|
|
|
|
run: |
|
|
|
|
wget -qO- get.nextflow.io | bash
|
|
|
|
sudo mv nextflow /usr/local/bin/
|
|
|
|
|
|
|
|
- name: Lint ${{ matrix.tags }}
|
2021-07-02 12:15:32 +00:00
|
|
|
run: nf-core modules lint ${{ matrix.tags }}
|
2021-10-08 15:02:42 +00:00
|
|
|
# HACK
|
|
|
|
if: startsWith( matrix.tags, 'subworkflow' ) != true
|
2021-04-09 06:58:43 +00:00
|
|
|
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: /usr/local/bin/nextflow
|
|
|
|
key: ${{ runner.os }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}
|