We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66216dd commit a29cfd5Copy full SHA for a29cfd5
1 file changed
.circleci/config.yml
@@ -1,11 +1,26 @@
1
-machine:
2
- python:
3
- version: 3.5.1
+version: 2
+jobs:
+ build:
4
+ docker:
5
+ - image: dbwebb/courserepo:cli
6
-test:
- pre:
7
- - make install
+ working_directory: ~/arepo
8
9
-notify:
10
- webhooks:
11
- - url: https://webhooks.gitter.im/e/c15a81fa5128754dcccc
+ steps:
+ - checkout
+
12
+ - restore_cache:
13
+ keys:
14
+ - v1-dependencies-{{ checksum "package.json" }}
15
+ # fallback to using the latest cache if no exact match is found
16
+ - v1-dependencies-
17
18
+ - run: make install
19
20
+ - save_cache:
21
+ paths:
22
+ - node_modules
23
+ key: v1-dependencies-{{ checksum "package.json" }}
24
25
+ # run tests!
26
+ - run: make check test
0 commit comments