ructe 0.5.6

Rust Compiled Templates, efficient type-safe web page templates.
Documentation
language: rust
rust:
  - stable
  - 1.29.0
  - 1.28.0
  - 1.27.2
  - 1.26.2
  - beta
  - nightly
matrix:
  include:
   - rust: stable
     env: TASK=rustfmt
     before_script:
      - rustup component add rustfmt
     script:
      - cargo fmt -- --check
      - cd examples/simple && cargo fmt -- --check
      - cd ../statics && cargo fmt -- --check
      - cd ../static-sass && cargo fmt -- --check
      - cd ../iron && cargo fmt -- --check
      - cd ../nickel && cargo fmt -- --check
      - cd ../gotham && cargo fmt -- --check
      - cd ../warp && cargo fmt -- --check
   - rust: stable
     env: TASK=iron
     script: cd examples/iron && cargo test
   - rust: stable
     env: TASK=nickel
     script: cd examples/nickel && cargo test
   - rust: stable
     env: TASK=gotham
     script: cd examples/gotham && cargo test
   - rust: stable
     env: TASK=warp
     script: cd examples/warp && cargo test
   - rust: beta
     env: TASK=ed2018
     script: cd examples/ed2018 && cargo test
  allow_failures:
    - rust: nightly
      env:
script:
- |
  cargo build &&
  cargo test &&
  (cd examples/simple && cargo test) &&
  (cd examples/statics && cargo test) &&
  (cd examples/static-sass && cargo test)