1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-10 20:13:09 +00:00
nf-configs/.github/workflows/main.yml
Workflow config file is invalid. Please check your config file: yaml: line 4: did not find expected key
Alexander Peltzer 64a3240a51
Fix linting
2019-11-26 00:29:04 +01:00

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 }}