File: .travis.yml

package info (click to toggle)
rust-futures-intrusive 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 704 kB
  • sloc: makefile: 2; sh: 1
file content (18 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: rust
rust:
  - stable
env:
  - RUST_BACKTRACE=1
cache:
  directories:
    - /home/travis/.cargo
before_cache:
  - cargo cache -r registry
before_script:
  - rustup component add rustfmt
  - (test -x $HOME/.cargo/bin/cargo-cache || cargo install cargo-cache)
script:
  - cargo fmt --all -- --check
  - cargo test --no-default-features
  - cargo test --no-default-features --features alloc
  - cargo test --all-targets --all-features