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 9376931 commit 35d83a8Copy full SHA for 35d83a8
.github/workflows/build.yml
@@ -113,7 +113,7 @@ jobs:
113
- name: Install rust toolchain
114
uses: dtolnay/rust-toolchain@nightly
115
116
- - name: cargo doc (rustls; all features)
+ - name: cargo doc (rustls-mbedcrypto-provider; all features)
117
run: cargo doc --locked --all-features --no-deps --document-private-items --package rustls-mbedcrypto-provider
118
env:
119
RUSTDOCFLAGS: -Dwarnings
admin/coverage
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+set -e
4
5
+source <(cargo llvm-cov show-env --export-prefix)
6
+cargo llvm-cov clean --workspace
7
8
+cargo build --locked --all-targets --all-features
9
+cargo test --locked --all-features
10
+cargo llvm-cov report "$@"
0 commit comments