We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aedf634 commit 0d24175Copy full SHA for 0d24175
.circleci/config.yml
@@ -18,6 +18,10 @@ jobs:
18
name: Build the examples
19
command: make build-examples-verbosely
20
21
+ - run:
22
+ name: Build crate with all features turned on
23
+ command: make build-all-features
24
+
25
- save_cache:
26
key: project-cache
27
paths:
Makefile
@@ -45,6 +45,9 @@ build-examples-verbosely:
45
cargo build --verbose --examples
46
cargo build --verbose --examples --release
47
48
+build-all-features:
49
+ cargo build --verbose --all-features
50
51
#
52
# For running examples
53
0 commit comments