We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f78217b commit a93cfd6Copy full SHA for a93cfd6
.github/workflows/analysis.yml
@@ -16,11 +16,13 @@ jobs:
16
- name: Read algorithms
17
id: algorithms
18
run: |
19
- echo "algorithms<<EOF" >> $GITHUB_OUTPUT
+ echo 'algorithms<<EOF' >> $GITHUB_OUTPUT
20
cat ./tests/IVIMmodels/unit_tests/algorithms.json >> $GITHUB_OUTPUT
21
- echo "EOF" >> $GITHUB_OUTPUT
+ echo 'EOF' >> $GITHUB_OUTPUT
22
- name: Log algorithms
23
- run: echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}"
+ run: |
24
+ echo "${{fromJson(steps.algorithms.outputs.algorithms)}}"
25
+ echo "${{fromJson(steps.algorithms.outputs.algorithms).algorithms}}"
26
- name: Log algorithms file
27
run: cat ./tests/IVIMmodels/unit_tests/algorithms.json
28
0 commit comments