aboutsummaryrefslogtreecommitdiff
path: root/structopt/.travis.yml
blob: dff3050e33f5fd13681fc4ac4730c45590c42596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: rust
matrix:
  include:
    - rust: stable
      name: check if `cargo fmt --all` is applied
      before_script: rustup component add rustfmt-preview
      script: cargo fmt --all -- --check

    - language: node_js
      node_js: node
      name: check links
      install: npm install -g markdown-link-check
      script:
        - markdown-link-check -c link-check-headers.json README.md
        - markdown-link-check -c link-check-headers.json CHANGELOG.md
        - markdown-link-check -c link-check-headers.json examples/README.md

    - rust: 1.36.0
    - rust: stable
    - rust: beta
    - rust: nightly

script:
  - cargo test $FEATURES