[fp-rs] Replacing cargo build with cargo test in validate.

This commit is contained in:
Lucas Silva Shepard
2023-08-18 19:56:59 -07:00
parent 02e9cda698
commit c7c59f1920
+4 -4
View File
@@ -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