aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorChristopher Durham <[email protected]>2018-01-27 23:31:23 +0000
committerChristopher Durham <[email protected]>2018-01-27 23:31:23 +0000
commit4de3c97b2afea55834cd16368f950133459d8c73 (patch)
tree9091b5dc1b116e5cbb47a535ffa922e66776c800 /.travis.yml
parent357cd3358167daa38f3ff34d225e1501faff6015 (diff)
Enforce rustfmt format
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index a493f815a..afca18dea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,14 @@
1language: rust 1language: rust
2rust: 2rust:
3 - stable 3 - stable
4
5matrix:
6 include:
7 - rust: nightly-2018-01-26
8 before_script:
9 - rustup component add rustfmt-preview
10 script:
11 - cargo fmt -- --write-mode=diff
12
13script:
14 - cargo test