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.
2 parents e74c22f + a4647ab commit bddb050Copy full SHA for bddb050
.travis.yml
@@ -14,13 +14,16 @@ rust:
14
matrix:
15
allow_failures:
16
- rust: nightly
17
+before_cache: |
18
+ if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
19
+ RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin
20
+ fi
21
script:
22
- cargo clean
23
- cargo build
24
- cargo test
25
after_success: |
- if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
- bash <(curl https://raw.githubusercontent.com/xd009642/tarpaulin/master/travis-install.sh)
26
27
cargo tarpaulin --out Xml
28
bash <(curl -s https://codecov.io/bash)
29
fi
0 commit comments