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