diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f6a9d6da..73c388e6 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -48,7 +48,7 @@ jobs: - name: Cargo build run: cargo build - name: Cargo test - run: cargo test --workspace --lib --examples + run: cargo test --workspace clippy: name: Clippy diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index eb756b31..130c279e 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -43,7 +43,7 @@ jobs: - name: Cargo clippy run: cargo clippy --tests -- --deny warnings - name: Cargo test - run: cargo test + run: cargo test --workspace --exclude g3-journal build-vendored: name: Build vendored runs-on: macos-latest diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index eaa23150..d662b05a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -46,7 +46,7 @@ jobs: - name: Cargo clippy run: cargo clippy --no-default-features --features $env:WIN_FEATURES --tests -- --deny warnings - name: Cargo test - run: cargo test --no-default-features --features $env:WIN_FEATURES + run: cargo test --no-default-features --features $env:WIN_FEATURES --workspace --exclude g3-journal build-vendored: name: Build vendored