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.
1 parent 9ec81b8 commit 47a211aCopy full SHA for 47a211a
.travis.yml
circle.yml
@@ -0,0 +1,23 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: ~/build
5
+ docker:
6
+ - image: jimmycuadra/rust:1.18.0
7
+ steps:
8
+ - checkout
9
+ - restore_cache:
10
+ key: registry
11
+ - run: cargo generate-lockfile
12
+ - save_cache:
13
+ key: registry-{{ epoch }}
14
+ paths:
15
+ - ~/.cargo/registry/index
16
17
+ key: dependencies-1.18-{{ checksum "Cargo.lock" }}
18
+ - run: cargo test
19
20
21
22
+ - target
23
+ - ~/.cargo/registry/cache
0 commit comments