We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4371c8 + 05f5b93 commit 300c348Copy full SHA for 300c348
.travis.yml
@@ -0,0 +1,31 @@
1
+language: rust
2
+rust: stable
3
+os: linux
4
+cache: cargo
5
+
6
+install:
7
+ - rustup component add rustfmt
8
+ - rustup component add clippy
9
10
+branches:
11
+ only:
12
+ - develop
13
14
+matrix:
15
+ include:
16
+ - name: rustfmt
17
+ script:
18
+ - cargo fmt -- --check
19
+ - name: clippy
20
21
+ - cargo clippy
22
+ - name: build
23
24
+ - cargo build --release
25
+ - name: test
26
27
+ - cargo test --release
28
+ - name: test (1.31.0)
29
+ rust: 1.31.0
30
31
0 commit comments