From a9f40f17b4a98ce29cb4128a3426cf4db3d7be06 Mon Sep 17 00:00:00 2001 From: Louis Capitanchik <contact@louiscap.co> Date: Wed, 20 Jun 2018 15:43:55 +0100 Subject: [PATCH] add circleci config --- .circleci/config.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..b15c7c4 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,18 @@ +version: 2 + +jobs: + build: + docker: + # The image used to build our project, build + # your own using the Dockerfile provided below + # and replace here. I put my own image here for + # the example. + - image: abronan/rust-circleci:latest + + steps: + - checkout + - run: rustup nightly cargo build + - save_cache: + key: cargo-cache + paths: + - "~/.cargo" \ No newline at end of file -- GitLab