From bc1b62d06a0c9cf4df2a2abbfa5dcbfedc309326 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Sun, 5 Apr 2020 18:48:21 +0200 Subject: [PATCH] circleci: run tests too. --- .circleci/config.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76451343..7417ef94 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,6 +39,19 @@ jobs: - run: name: build nalgebra-lapack command: cargo build -p nalgebra-lapack --feature netlib + test-native: + executor: rust-executor + steps: + - checkout + - run: + name: test + command: cargo test --all-features + - run: + name: test nalgebra-glm + command: cargo test -p nalgebra-glm --all-features + - run: + name: test nalgebra-lapack + command: cargo test -p nalgebra-lapack --feature netlib build-wasm: executor: rust-executor steps: @@ -91,3 +104,6 @@ workflows: - build-nightly: requires: - check-fmt + - test-native: + requires: + - build-native