summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 20cc0c695aae8e804762c68159a2a18d53c12419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
matrix:
  include:
    - language: nix
      script:
        - nix-shell --pure --run "cargo build --all --all-features"
        - nix-shell --pure --run "cargo test --all --all-features"

jobs:
  allow_failures:
    - rust: nightly
  fast_finish: true

notifications:
  email:
    on_success: always
    on_failure: always