File: .travis.yml

package info (click to toggle)
rust-doc-comment 0.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 108 kB
  • sloc: makefile: 4
file content (12 lines) | stat: -rw-r--r-- 274 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
language: rust
rust:
  - nightly
  - beta
  - stable
  - 1.24.1
script:
  - rustc --version
  - (rustc --version | grep nightly && echo "nightly build!") || touch not_nightly
  - cargo build
  - cargo test
  - if [ ! -f not_nightly ]; then cargo test --features no_core; fi