We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 115aa7b commit 7415732Copy full SHA for 7415732
1 file changed
.github/workflows/ci.yml
@@ -69,14 +69,16 @@ jobs:
69
run: cargo doc --no-deps --workspace --all-features
70
71
- name: Run benchmarks
72
- run: cargo bench --all-features 2>&1 | tee bench-output.txt
+ run: cargo bench -p graph 2>&1 | tee bench-output.txt
73
74
- name: Assemble site
75
run: |
76
mkdir -p site
77
cp -r target/doc/. site/
78
- mkdir -p site/bench
79
- cp -r target/criterion/. site/bench/
+ if [ -d target/criterion ]; then
+ mkdir -p site/bench
80
+ cp -r target/criterion/. site/bench/
81
+ fi
82
cat > site/index.html << 'HTML'
83
<!DOCTYPE html>
84
<html lang="en">
0 commit comments