File: .travis.yml

package info (click to toggle)
rust-defmac 0.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 112 kB
  • sloc: makefile: 4
file content (19 lines) | stat: -rw-r--r-- 335 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
sudo: false
matrix:
  include:
    - rust: 1.20.0
    - rust: stable
      env: STABLE=1
    - rust: nightly
      env: STABLE=1
branches:
  only:
    - master
script:
  - |
      cargo build -v &&
      cargo test -v --lib &&
      cargo test -v --doc &&
      cargo doc -v &&
      ([ "$STABLE" != 1 ] || cargo test )