only do rustfmt on nightly

master
Paul Woolcock 6 years ago
parent fe1aafff12
commit 7ea0f67ccf
  1. 8
      .travis.yml

@ -4,9 +4,13 @@ rust:
- beta - beta
- nightly - nightly
before_script: before_script:
- rustup component add rustfmt-preview - bash -c 'if [[ "$TRAVIS_RUST_VERSION" == "nightly*" ]]; then
rustup component add rustfmt-preview
fi'
script: script:
- cargo fmt --all -- --check - bash -c 'if [[ "$TRAVIS_RUST_VERSION" == "nightly*" ]]; then
cargo fmt --all -- --check
fi'
- cargo build - cargo build
- cargo test - cargo test
matrix: matrix:

Loading…
Cancel
Save