Skip to content

Commit 6dd817c

Browse files
committed
Fix wrong json.
1 parent 84d8eb3 commit 6dd817c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/base_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
nim-branch:
5656
- version-1-6
5757
- version-2-0
58-
include: ${{ fromJSON(inputs.include) || [] }}
59-
exclude: ${{ fromJSON(inputs.exclude) || [] }}
58+
include: ${{ fromJSON(inputs.include) || fromJSON('[]') }}
59+
exclude: ${{ fromJSON(inputs.exclude) || fromJSON('[]') }}
6060

6161
defaults:
6262
run:

0 commit comments

Comments
 (0)