From 5efda5c21d2109a4fadb703d90332d6c993fb673 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Fri, 5 Aug 2022 14:29:54 -0400 Subject: [PATCH] run cargo check --all in CI --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ccc01a3e..e75af276 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,6 +33,10 @@ jobs: toolchain: ${{ matrix.rust }} components: rustfmt, clippy default: true + - uses: actions-rs/cargo@v1 + with: + command: check + args: --all - uses: actions-rs/cargo@v1 with: command: test