mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-10 20:13:09 +00:00
22 lines
837 B
YAML
22 lines
837 B
YAML
name: nfcore configs tests
|
|
|
|
## Check whether users added their config to the matrix
|
|
on: [push, pull_request]
|
|
paths:
|
|
- '.github/main.workflow'
|
|
|
|
jobs:
|
|
job_1:
|
|
name: Run individual profiles
|
|
strategy:
|
|
matrix:
|
|
profile: ['awsbatch, bigpurple, binac, cbe, ccga_dx, ccga, cfc, crick, czbiohub_aws_highpriority, czbiohub_aws, denbi_qbic, genouest, gis, hebbe, kraken, munin, pasteur, phoenix, prince, shh, uct_hex, uppmax_devel, uppmax, uzh']
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install Nextflow
|
|
run: |
|
|
wget -qO- get.nextflow.io | bash
|
|
sudo mv nextflow /usr/local/bin/
|
|
- name: Check ${{ matrix.profile }} profile
|
|
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf --custom_config_base=${GITHUB_WORKSPACE} -profile ${{ matrix.profile }}
|
|
|