Skip to content

Commit 3905312

Browse files
committed
Add no_std to CI and add std per feature
1 parent c4d1075 commit 3905312

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

ci.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ cargo fmt --check
1313
echo Build with default features
1414
build
1515

16-
echo Build with no default features
17-
build --no-default-features
16+
echo Build with only no_std feature
17+
build --no-default-features --features no_std
1818

1919
echo Build with only std feature
2020
build --no-default-features --features std
2121

22-
echo Build with only swash feature
23-
build --no-default-features --features swash
22+
echo Build with only std and swash features
23+
build --no-default-features --features std,swash
2424

25-
echo Build with only syntect feature
26-
build --no-default-features --features syntect
25+
echo Build with only std and syntect features
26+
build --no-default-features --features std,syntect
2727

28-
echo Build with only vi feature
29-
build --no-default-features --features vi
28+
echo Build with only std and vi features
29+
build --no-default-features --features std,vi
3030

3131
echo Build with all features
3232
build --all-features

0 commit comments

Comments
 (0)