We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d770882 commit cf01512Copy full SHA for cf01512
.travis.yml
@@ -1,26 +1,33 @@
1
language: rust
2
sudo: false
3
4
-jobs:
+matrix:
5
+ fast_finish: true
6
include:
- - os: linux
7
- dist: trusty
8
- - os: windows
9
10
-rust:
11
- - nightly
12
- - beta
13
- - stable
14
- - 1.45.0 # = MIN_RUST_VERSION
+ # Linux
+ - rust: nightly
+ - rust: beta
+ - rust: stable
+ - rust: 1.45.0 # = MIN_RUST_VERSION
+
+ # MacOS
15
+ - os: osx
16
+ rust: beta
17
18
+ rust: stable
19
20
+ # Windows
21
+ - os: windows
22
23
24
25
26
branches:
27
except:
28
- staging.tmp
29
- trying.tmp
30
-matrix:
- fast_finish: true
-
31
notifications:
32
email:
33
on_success: never
0 commit comments