[go: up one dir, main page]

indoc 0.2.1

Indented document literals
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
sudo: false
language: rust

matrix:
  include:
    - rust: 1.15.0
    - rust: stable
    - rust: beta
    - rust: nightly
      env: TEST_FEATURES="compiletest"
    - rust: nightly
      env: FEATURES="unstable" TEST_FEATURES="compiletest unstable"

script:
  - cargo build --features "${FEATURES:-}" --verbose
  - cargo test --features "${FEATURES:-}" --verbose
  - cargo test --features "${TEST_FEATURES:-}" --manifest-path tests/Cargo.toml --verbose