From 8a46286005c5dd23277090d6e9541b49ce02de9a Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Tue, 1 Sep 2020 20:18:38 +0200 Subject: [PATCH] CI: Test/check/lint all targets in all workspaces --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd3d54f..626eb2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: check + args: --workspace --all-targets test: name: Test Suite @@ -30,6 +31,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test + args: --workspace --all-targets fmt: name: Rustfmt @@ -61,4 +63,4 @@ jobs: - uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings + args: --workspace --all-targets -- -D warnings