Skip to content

Commit 0d24175

Browse files
samueltardieunickray
authored andcommitted
Also do a build with all features enabled in CI
1 parent aedf634 commit 0d24175

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.circleci/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
name: Build the examples
1919
command: make build-examples-verbosely
2020

21+
- run:
22+
name: Build crate with all features turned on
23+
command: make build-all-features
24+
2125
- save_cache:
2226
key: project-cache
2327
paths:

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ build-examples-verbosely:
4545
cargo build --verbose --examples
4646
cargo build --verbose --examples --release
4747

48+
build-all-features:
49+
cargo build --verbose --all-features
50+
4851
#
4952
# For running examples
5053
#

0 commit comments

Comments
 (0)