cucumber_rust 0.6.5

Cucumber testing framework for Rust. Fully native, no external test runners or dependencies.
Documentation
language: rust
cache: cargo

matrix:
  include:
  - rust: nightly
    env: NAME=test-after-dark
    script:
    - cargo test --all --verbose
  - rust: 1.40.0
    env: NAME=test
    script:
    - cargo test --all --verbose
  - rust: 1.40.0
    env: NAME=petty
    before_script:
    - rustup component add clippy
    script:
    - cargo clippy --all --all-targets --verbose

notifications:
  email:
    on_success: never