Skip to content

Commit a4e4d2b

Browse files
committed
Add serde test for all backend
1 parent d311abe commit a4e4d2b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.circleci/config.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
command: |
1616
apt update && apt install -y gfortran
1717
cargo test --no-default-features --features=openblas
18+
cargo test --no-default-features --features=openblas,serde-1
1819
1920
test-netlib:
2021
<<: *rust_cfg
@@ -25,14 +26,17 @@ jobs:
2526
command: |
2627
apt update && apt install -y cmake gfortran
2728
cargo test --no-default-features --features=netlib
29+
cargo test --no-default-features --features=netlib,serde-1
2830
2931
test-intel-mkl:
3032
<<: *rust_cfg
3133
steps:
3234
- checkout
3335
- run:
3436
name: test Intel MKL backend
35-
command: cargo test --no-default-features --features=intel-mkl
37+
command: |
38+
cargo test --no-default-features --features=intel-mkl
39+
cargo test --no-default-features --features=intel-mkl,serde-1
3640
3741
format:
3842
<<: *rust_cfg

0 commit comments

Comments
 (0)