From b6b68cef449cf7d6166b0ef5b5aecea2bd2c2cf3 Mon Sep 17 00:00:00 2001 From: Igor Katson Date: Thu, 29 Aug 2024 10:56:37 +0100 Subject: [PATCH] Check and test whole workspace --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 88199a6..c90ff7d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,8 @@ jobs: rustup toolchain install ${{ matrix.rust_version }} - uses: actions/checkout@v4 - run: rustup override set ${{ matrix.rust_version }} - - name: cargo check - run: cargo check + - name: cargo check --workspace + run: cargo check --workspace test: strategy: matrix: @@ -39,4 +39,4 @@ jobs: with: prefix-key: v1 - name: Run tests - run: cargo test + run: cargo test --workspace