makepad/libs/rapier/vendor/ena/.travis.yml
2026-03-15 09:52:45 +01:00

16 lines
397 B
YAML

language: rust
rust:
- stable
- nightly
script:
- |
if [[ $TRAVIS_RUST_VERSION == *stable* ]]
then
rustup component add rustfmt
cargo fmt --version
cargo fmt -- --check || (echo "Please reformat your code with 'cargo fmt' (version $(cargo fmt --version))"; false)
fi
- cargo test
- |
[ $TRAVIS_RUST_VERSION != nightly ] ||
cargo test --all-features