File: .travis.yml

package info (click to toggle)
rust-lopdf 0.34.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,620 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 534 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: rust

cache: cargo

rust:
  - stable
  - beta
  - nightly

script:
  - cargo clean
  - cargo +nightly fmt -- --check
  - cargo check --verbose --no-default-features
  - cargo check --verbose --features="chrono_time"
  - cargo check --verbose --features="nom_parser"
  - cargo test --verbose
  - cargo test --verbose --features="nom_parser"
  - cargo test --verbose --examples
  - cargo clippy -- -D warnings
  - cargo clippy -- -D warnings --features="nom_parser"

matrix:
  allow_failures:
    - rust: nightly

sudo: false