We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d01799 commit ab8b511Copy full SHA for ab8b511
1 file changed
.travis.yml
@@ -1,15 +1,25 @@
1
language: rust
2
+sudo: false
3
rust:
4
- 1.8.0
5
- 1.15.0
6
- 1.20.0
7
+ - 1.26.0 # has_i128
8
+ - 1.31.0 # 2018!
9
- stable
10
- beta
11
- nightly
-sudo: false
12
script:
13
- cargo build --verbose
14
- ./ci/test_full.sh
15
+matrix:
16
+ include:
17
+ - name: "rustfmt"
18
+ rust: 1.31.0
19
+ before_script:
20
+ - rustup component add rustfmt
21
+ script:
22
+ - cargo fmt --all -- --check
23
notifications:
24
email:
25
on_success: never
0 commit comments