From 37949f63cd9b6817b28f3e86b066de51767539a2 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 24 Feb 2021 12:19:57 +0000 Subject: [PATCH] add ci step that does not include check tests --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e52a32b..26304014 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,13 @@ jobs: uses: actions-rs/cargo@v1 with: command: hack - args: --clean-per-run check --workspace --no-default-features --tests + args: --clean-per-run check --workspace --no-default-features + + - name: check minimal + tests + uses: actions-rs/cargo@v1 + with: + command: hack + args: --clean-per-run check --workspace --no-default-features --tests --examples - name: check full uses: actions-rs/cargo@v1