diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..5f6d998 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +version: 2 +jobs: + build: + docker: + - image: rust:latest + steps: + - checkout + - restore_cache: + key: project-cache + - run: + name: Stable Build + command: | + cargo --version --verbose + cargo build + - run: + name: Stable Test + command: cargo test + - save_cache: + key: project-cache + paths: + - "~/.cargo"