From ef2915a61632fe35dbb660aafcf434389df3f22c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 24 Feb 2021 12:33:36 +0000 Subject: [PATCH] check all features --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26304014..434ee851 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,14 +70,20 @@ jobs: - name: check minimal + tests uses: actions-rs/cargo@v1 with: - command: hack - args: --clean-per-run check --workspace --no-default-features --tests --examples + command: check + args: --workspace --no-default-features --tests --examples + - name: check default + uses: actions-rs/cargo@v1 + with: + command: check + args: --workspace --tests --examples + - name: check full uses: actions-rs/cargo@v1 with: command: check - args: --workspace --bins --examples --tests + args: --workspace --all-features --tests --examples - name: tests if: matrix.target.triple != 'x86_64-pc-windows-gnu'