gherkin_rust 0.6.0

A pure Rust implementation of the Gherkin (`.feature` file) language for the Cucumber testing framework
Documentation
sudo: false

language: rust

rust:
  - stable
  - nightly

matrix:
  allow_failures:
    - rust: nightly

before_script:
  - rustup component add clippy rustfmt

script:
  - cargo clippy --verbose --all-targets -- --deny warnings
  - cargo test
  - cargo fmt -- --check