mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
20 lines
389 B
YAML
20 lines
389 B
YAML
language: rust
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
cache: cargo
|
|
|
|
before_script:
|
|
- rustup component add rustfmt-preview
|
|
|
|
script:
|
|
- cargo test --all
|
|
- if [[ "${TRAVIS_RUST_VERSION}" == stable ]]; then
|
|
cd testing && cargo test --features full;
|
|
cargo fmt -- --check;
|
|
fi
|
|
- if [[ "${TRAVIS_RUST_VERSION}" == nightly ]]; then
|
|
cd testing && cargo test --features with-rocket;
|
|
fi
|