mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 12:33:10 +00:00
20 lines
No EOL
968 B
YAML
20 lines
No EOL
968 B
YAML
name: Configs tests
|
|
|
|
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 whether profiles are all tested
|
|
run: |
|
|
python ${GITHUB_WORKSPACE}/bin/cchecker.py ${GITHUB_WORKSPACE}/nfcore_custom.config ${GITHUB_WORKSPACE}/.github/workflows/main.yml
|
|
- name: "Check profile"
|
|
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf --custom_config_base=${GITHUB_WORKSPACE} -profile ${{ matrix.profile }} |