circleci: run tests too.

This commit is contained in:
sebcrozet 2020-04-05 18:48:21 +02:00
parent 615e092b24
commit bc1b62d06a
1 changed files with 16 additions and 0 deletions

View File

@ -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