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 eeed7c5 commit 6d34794Copy full SHA for 6d34794
.travis.yml
circle.yml
@@ -0,0 +1,26 @@
1
+version: 2
2
+jobs:
3
+ build:
4
+ working_directory: ~/build
5
+ docker:
6
+ - image: jimmycuadra/rust:1.19.0
7
+ - image: postgres:9.6
8
+ environment:
9
+ POSTGRES_PASSWORD: password
10
+ steps:
11
+ - checkout
12
+ - restore_cache:
13
+ key: registry
14
+ - run: cargo generate-lockfile
15
+ - save_cache:
16
+ key: registry-{{ epoch }}
17
+ paths:
18
+ - ~/.cargo/registry/index
19
20
+ key: dependencies-1.19-{{ checksum "Cargo.lock" }}
21
+ - run: cargo test
22
23
24
25
+ - target
26
+ - ~/.cargo/registry/cache
0 commit comments