File: .travis.yml

package info (click to toggle)
rust-fork 0.1.23-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 120 kB
  • sloc: makefile: 4
file content (19 lines) | stat: -rw-r--r-- 311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: rust
rust:
  - stable
  - beta

os:
  - linux
  - osx

before_script:
  - rustup component add clippy
script:
  - cargo clippy --all-targets --all-features -- -D clippy::pedantic -D clippy::nursery
  - cargo build --all --all-targets
  - cargo test --all

notifications:
  email:
    on_sucess: never