circleci: run tests too.
This commit is contained in:
parent
615e092b24
commit
bc1b62d06a
|
@ -39,6 +39,19 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
name: build nalgebra-lapack
|
name: build nalgebra-lapack
|
||||||
command: cargo build -p nalgebra-lapack --feature netlib
|
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:
|
build-wasm:
|
||||||
executor: rust-executor
|
executor: rust-executor
|
||||||
steps:
|
steps:
|
||||||
|
@ -91,3 +104,6 @@ workflows:
|
||||||
- build-nightly:
|
- build-nightly:
|
||||||
requires:
|
requires:
|
||||||
- check-fmt
|
- check-fmt
|
||||||
|
- test-native:
|
||||||
|
requires:
|
||||||
|
- build-native
|
||||||
|
|
Loading…
Reference in New Issue