1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 22:12:03 +00:00
nf-configs/.github/workflows/main.yml
Alexander Peltzer 3d7f5436b1
Its in workflows
2019-11-26 00:54:17 +01:00

23 lines
No EOL
829 B
YAML

name: Configs tests
## Check whether users added their config to the matrix
on:
push:
paths:
- '.github/workflows/main.yml'
jobs:
profile_test:
runs-on: ubuntu-latest
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 profile"
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf --custom_config_base=${GITHUB_WORKSPACE} -profile ${{ matrix.profile }}