Skip to content

Commit

Permalink
Add no_std to CI and add std per feature
Browse files Browse the repository at this point in the history
  • Loading branch information
grovesNL committed Aug 9, 2023
1 parent c4d1075 commit 3905312
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ cargo fmt --check
echo Build with default features
build

echo Build with no default features
build --no-default-features
echo Build with only no_std feature
build --no-default-features --features no_std

echo Build with only std feature
build --no-default-features --features std

echo Build with only swash feature
build --no-default-features --features swash
echo Build with only std and swash features
build --no-default-features --features std,swash

echo Build with only syntect feature
build --no-default-features --features syntect
echo Build with only std and syntect features
build --no-default-features --features std,syntect

echo Build with only vi feature
build --no-default-features --features vi
echo Build with only std and vi features
build --no-default-features --features std,vi

echo Build with all features
build --all-features
Expand Down

0 comments on commit 3905312

Please sign in to comment.