/ .travis.yml
.travis.yml
 1  language: rust
 2  os:
 3  - linux
 4  - osx
 5  arch:
 6  - amd64
 7  - arm64
 8  services:
 9  - docker
10  before_install:
11  - rustup component add rustfmt
12  rust:
13  - stable
14  - beta
15  jobs:
16    fast_finish: true
17  script:
18  - cargo build
19  - cargo test
20  - "ulimit -n 5000; cargo test timelimits:: -- --ignored --test-threads=1 --show-output"
21  - cargo fmt -- --check