mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 08:29:54 +00:00
Fix linting
This commit is contained in:
parent
64a3240a51
commit
2d16917473
1 changed files with 9 additions and 8 deletions
15
.github/workflows/main.yml
vendored
15
.github/workflows/main.yml
vendored
|
@ -1,12 +1,14 @@
|
||||||
name: nfcore configs tests
|
name: nfcore configs tests
|
||||||
|
|
||||||
## Check whether users added their config to the matrix
|
## Check whether users added their config to the matrix
|
||||||
on: [push, pull_request]
|
on:
|
||||||
paths:
|
push:
|
||||||
- '.github/main.workflow'
|
paths:
|
||||||
|
- '.github/main.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
job_1:
|
profile_test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
name: Run individual profiles
|
name: Run individual profiles
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -14,9 +16,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- name: Install Nextflow
|
- name: Install Nextflow
|
||||||
run: |
|
run: |
|
||||||
wget -qO- get.nextflow.io | bash
|
wget -qO- get.nextflow.io | bash
|
||||||
sudo mv nextflow /usr/local/bin/
|
sudo mv nextflow /usr/local/bin/
|
||||||
- name: Check ${{ matrix.profile }} profile
|
- name: "Check profile"
|
||||||
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf --custom_config_base=${GITHUB_WORKSPACE} -profile ${{ matrix.profile }}
|
run: nextflow run ${GITHUB_WORKSPACE}/configtest.nf --custom_config_base=${GITHUB_WORKSPACE} -profile ${{ matrix.profile }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue