-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: Add an example #6
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6 +/- ##
=======================================
Coverage 94.55% 94.55%
=======================================
Files 1 1
Lines 202 202
=======================================
Hits 191 191
Misses 11 11 ☔ View full report in Codecov by Sentry. |
It is failing on the doc test introduced in this pull request. I will take a look why that is the case. |
@larseggert can you try the following: modified .github/workflows/check.yml
@@ -88,7 +88,7 @@ jobs:
for sanitizer in $SANITIZERS; do
echo "Running tests with $sanitizer sanitizer..."
- RUSTFLAGS="-Z sanitizer=$sanitizer" cargo +nightly test -Z build-std --target $TARGET
+ RUSTFLAGS="-Z sanitizer=$sanitizer" RUSTDOCFLAGS="-Z sanitizer=$sanitizer" cargo +nightly test -Z build-std --target $TARGET
done |
Seems to work. |
Co-authored-by: Max Inden <mail@max-inden.de>
Co-authored-by: Max Inden <mail@max-inden.de>
Edit: Never mind. I didn't see the additional imports. Sorry for the noise. |
No description provided.