We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3f6d48 commit 62dcca8Copy full SHA for 62dcca8
.github/workflows/performance-regressions.yml
@@ -69,4 +69,11 @@ jobs:
69
70
- name: Enforce suite gate
71
if: always() && steps.performance_suite.outcome != 'success'
72
- run: exit 1
+ shell: bash
73
+ run: |
74
+ if [ -f performance-results.json ]; then
75
+ target/release/cap-test report performance-results.json
76
+ else
77
+ echo "performance-results.json not found"
78
+ fi
79
+ exit 1
0 commit comments