mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
ci: Need to wrap matrix's in []
This commit is contained in:
parent
0f1016e4a3
commit
860a49d456
1 changed files with 3 additions and 3 deletions
6
.github/workflows/pytest-workflow.yml
vendored
6
.github/workflows/pytest-workflow.yml
vendored
|
@ -18,11 +18,11 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
name: CI Test
|
||||
needs: changes
|
||||
if: ${{ fromJson(needs.changes.outputs.modules) }} == 'true'
|
||||
if: ${{ fromJson(needs.changes.outputs.modules) }} != 'false'
|
||||
strategy:
|
||||
matrix:
|
||||
nxf_version: [20.11.0-edge]
|
||||
tags: ${{ fromJson(needs.changes.outputs.modules) }}
|
||||
nxf_version: ['20.11.0-edge']
|
||||
tags: ['${{ fromJson(needs.changes.outputs.modules) }}']
|
||||
env:
|
||||
NXF_ANSI_LOG: false
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue