From cc1a1bee2cc0d5dd978004b81988bf6355527823 Mon Sep 17 00:00:00 2001 From: Jennifer Wilcox Date: Sat, 24 Apr 2021 18:46:07 -0500 Subject: [PATCH] Also build all examples My other PR has some examples. It turns out `cargo check --all` doesn't actually check _all_ buildable things :( --- .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 cbda6da..cd42d94 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -10,6 +10,6 @@ jobs: with: toolchain: stable target: thumbv6m-none-eabi - - run: "cargo check --all" + - run: "cargo check --all --examples" - run: "cargo fmt -- --check" - run: "cargo clippy -- -Dwarnings"