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 6c30a4f commit 0babb03Copy full SHA for 0babb03
.travis.yml
@@ -4,10 +4,16 @@ os: linux
4
5
rust: nightly
6
7
+addons:
8
+ apt:
9
+ packages:
10
+ - valgrind
11
+
12
before_script:
13
- rustup component add rustfmt
14
15
script:
- - cargo check --benches --bins --examples --tests
- - cargo test
16
- cargo fmt --all -- --check
17
+ - cargo check --benches --bins --examples --tests
18
+ - CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="valgrind --leak-check=full --error-exitcode=1" \
19
+ cargo test
0 commit comments