summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2021-09-09 02:16:54 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2021-09-09 02:16:54 +0800
commita0989292b9501af673b3d6148f055e5d7f3fb8c5 (patch)
tree12728fc16381b34bd496224a1025bb9feb1c57b3 /.github
parentafe9168fda6d43911fd3bdb3de785776d2402e30 (diff)
Improve code readability on view by using arrays instead of vec
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 6e0098c..d5eb81d 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -17,3 +17,9 @@ jobs:
- name: Run tests
run: cargo test --verbose
+
+ - name: Build no features
+ run: cargo build --all --no-default-features
+
+ - name: Build with all features
+ run: cargo build --all --all-features