From 8d046cb5024bf66c37efabb6a7d50c2ed74bf072 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 12 Oct 2020 09:41:05 +0200 Subject: [PATCH] CI: use --all-features --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a9d44c6..6724628 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,6 +16,6 @@ jobs: - name: Run fmt run: cargo fmt --all -- --check - name: Build - run: cargo build --verbose + run: cargo build --verbose --all-features - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all-features