Skip to content

Commit dcc3ce1

Browse files
Copilot0xrinegade
andcommitted
Fix benchmark GitHub workflow - remove invalid --output-format html flag
Co-authored-by: 0xrinegade <[email protected]>
1 parent 0d7f864 commit dcc3ce1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Run HTTP API benchmarks
5757
run: |
5858
echo "🚀 Running HTTP API benchmarks..."
59-
cargo bench --bench http_api_bench -- --output-format html
59+
cargo bench --bench http_api_bench
6060
# Copy HTML reports to results directory
6161
if [ -d "target/criterion" ]; then
6262
cp -r target/criterion benchmark-results/http-api-criterion-reports
@@ -66,7 +66,7 @@ jobs:
6666
- name: Run RPC Methods benchmarks
6767
run: |
6868
echo "🔧 Running RPC Methods benchmarks..."
69-
cargo bench --bench rpc_methods_bench -- --output-format html
69+
cargo bench --bench rpc_methods_bench
7070
# Copy HTML reports to results directory
7171
if [ -d "target/criterion/rpc_methods_bench" ]; then
7272
cp -r target/criterion benchmark-results/rpc-methods-criterion-reports || true
@@ -76,7 +76,7 @@ jobs:
7676
- name: Run WebSocket benchmarks
7777
run: |
7878
echo "🌐 Running WebSocket benchmarks..."
79-
cargo bench --bench websocket_bench -- --output-format html
79+
cargo bench --bench websocket_bench
8080
# Copy HTML reports to results directory
8181
if [ -d "target/criterion/websocket_bench" ]; then
8282
cp -r target/criterion benchmark-results/websocket-criterion-reports || true

0 commit comments

Comments
 (0)