mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
ci: Fix if statement
This commit is contained in:
parent
f0006f3d3d
commit
3a4f142e9d
1 changed files with 1 additions and 1 deletions
2
.github/workflows/pytest-workflow.yml
vendored
2
.github/workflows/pytest-workflow.yml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
id: yq_modules
|
||||
run: |
|
||||
output=$(echo ${{ steps.filter.outputs.changes }} | yq e 'length' -)
|
||||
echo "::set-output name=proceed::$(if (test $output -lt 42); then return 0 else return 1 fi)"
|
||||
echo "::set-output name=proceed::$(if (test $output -lt 42); then return 0; else return 1; fi)"
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue