From e025aef4e08ca5d7935b2c9166296b46062dc301 Mon Sep 17 00:00:00 2001 From: Simon Johnston Date: Tue, 18 Aug 2020 12:51:25 -0700 Subject: [PATCH] Update the workflow to build with all targets --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3c13d1b..4c9f2f2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,4 +19,6 @@ jobs: - name: Build run: cargo build --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all-features + - name: Document + run: cargo doc --verbose --all-features --no-deps