From eecb34bb93cfb633581920e6ea3c69c8baa2bc71 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Sat, 1 Jun 2019 22:19:11 +0000 Subject: [PATCH] Lint on CI --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3772749..a5586cc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,4 +7,7 @@ jobs: - checkout - run: git submodule update --init --recursive - run: cargo build + - run: | + rustup component add clippy + cargo clippy - run: cd examples && ./test.sh