From d738626f70cfe40ef2659d262887af12578520df Mon Sep 17 00:00:00 2001 From: Jennifer Wilcox Date: Mon, 26 Apr 2021 12:00:23 -0500 Subject: [PATCH] Also check examples A quick check on my machine showed that just `cargo check --workspace` didn't verify the examples. Quite silly. --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3319f39..96b1663 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -16,7 +16,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: check - args: --workspace + args: --workspace --examples - uses: actions-rs/cargo@v1 with: command: fmt