From c7c59f19208b9f036ce0281ae2e301aa460f1a43 Mon Sep 17 00:00:00 2001 From: Lucas Silva Shepard Date: Fri, 18 Aug 2023 18:12:39 -0700 Subject: [PATCH] [fp-rs] Replacing cargo build with cargo test in validate. --- .github/workflows/validate.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 24e0da2a..25d7556e 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -48,9 +48,9 @@ jobs: - name: Build FPP run: cargo build --manifest-path presence/fpp/fpp/Cargo.toml - name: Build Bluetooth Module - run: cargo build --manifest-path fastpair/rust/bluetooth/Cargo.toml + run: cargo test --manifest-path fastpair/rust/bluetooth/Cargo.toml - name: Build Fast Pair - run: cargo build --manifest-path fastpair/rust/demo/rust/Cargo.toml + run: cargo test --manifest-path fastpair/rust/demo/rust/Cargo.toml build-rust-windows: name: Build Rust on Windows @@ -60,7 +60,7 @@ jobs: with: submodules: recursive - name: Build Bluetooth Module - run: cargo build --manifest-path fastpair/rust/bluetooth/Cargo.toml + run: cargo test --manifest-path fastpair/rust/bluetooth/Cargo.toml - name: Build Fast Pair - run: cargo build --manifest-path fastpair/rust/demo/rust/Cargo.toml + run: cargo test --manifest-path fastpair/rust/demo/rust/Cargo.toml \ No newline at end of file