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