mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
ci: Fix check for no checks
https://github.community/t/needs-job-outputs-issue/149156 https://github.community/t/jobs-being-skipped-while-using-both-needs-and-if-unclear-why/18480
This commit is contained in:
parent
506ebe515e
commit
7a89902657
1 changed files with 1 additions and 1 deletions
2
.github/workflows/pytest-workflow.yml
vendored
2
.github/workflows/pytest-workflow.yml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: CI Test
|
name: CI Test
|
||||||
needs: changes
|
needs: changes
|
||||||
if: ${{ fromJson(needs.changes.outputs.modules) }} != 'false'
|
if: needs.changes.outputs.modules == 'true'
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
nxf_version: ['20.11.0-edge']
|
nxf_version: ['20.11.0-edge']
|
||||||
|
|
Loading…
Reference in a new issue