Skip to content

Commit 08836cb

Browse files
committed
Fix
1 parent 63991d2 commit 08836cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/performance_score_director.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
NEW_RANGE_END: ${{ steps.benchmark_new.outputs.RANGE_END }}
168168
shell: bash
169169
run: |
170-
export FAIL = false
170+
export FAIL=false
171171
if [ "$NEW_RANGE_START" -le "$OLD_RANGE_END" ] && [ "$NEW_RANGE_END" -ge "$OLD_RANGE_START" ]; then
172172
export OLD_MEAN=$(((OLD_RANGE_END - OLD_RANGE_START)/2)+OLD_RANGE_START)
173173
export NEW_MEAN=$(((NEW_RANGE_END - NEW_RANGE_START)/2)+NEW_RANGE_START)
@@ -182,7 +182,7 @@ jobs:
182182
echo "### Statistically significant improvement 🚀" >> $GITHUB_STEP_SUMMARY
183183
else
184184
echo "### Statistically significant regression 🛑" >> $GITHUB_STEP_SUMMARY
185-
export FAIL = true
185+
export FAIL=true
186186
fi
187187
188188
echo "| | **Ref** | **Min** | **Max** |" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)