21 lines
911 B
YAML
21 lines
911 B
YAML
language: rust
|
|
rust: nightly
|
|
sudo: false
|
|
|
|
before_script:
|
|
- cargo install clippy || true
|
|
- export PATH=$HOME/.cargo/bin:$PATH
|
|
|
|
script:
|
|
- |
|
|
if [ -n "$TRAVIS_COMMIT_RANGE" ]; then
|
|
printf 'Checking for tabs in %s\n' "$TRAVIS_COMMIT_RANGE"
|
|
! git diff --name-only --diff-filter=ACMR "$TRAVIS_COMMIT_RANGE" | xargs grep $'\t'
|
|
fi
|
|
- ( cd maud && cargo test --all-features )
|
|
- if command -v cargo-clippy > /dev/null; then ( cd maud && cargo clippy -- -D warnings ); fi
|
|
- ( cd maud_macros && cargo test --all-features )
|
|
# Silence `collapsible_if` warnings for now -- see https://github.com/lfairy/maud/issues/93
|
|
- if command -v cargo-clippy > /dev/null; then ( cd maud_macros && cargo clippy -- -D warnings -A collapsible_if ); fi
|
|
- ( cd maud_extras && cargo test --all-features )
|
|
- if command -v cargo-clippy > /dev/null; then ( cd maud_extras && cargo clippy -- -D warnings ); fi
|