diff --git a/.github/workflows/build_and_release.yml b/.github/workflows/build_and_release.yml index eddd5b7..3acda3c 100644 --- a/.github/workflows/build_and_release.yml +++ b/.github/workflows/build_and_release.yml @@ -26,6 +26,9 @@ jobs: - name: Build/Test neotron-bmc-protocol run: cd neotron-bmc-protocol && cargo test + - name: Build/Test neotron-bmc-commands + run: cd neotron-bmc-commands && cargo test + - name: Build neotron-bmc-pico run: cd neotron-bmc-pico && DEFMT_LOG=info cargo build --release --verbose --target=thumbv6m-none-eabi diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index f414907..ea6932c 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -15,3 +15,5 @@ jobs: run: cd neotron-bmc-nucleo && cargo fmt -- --check - name: Check format neotron-bmc-protocol run: cd neotron-bmc-protocol && cargo fmt -- --check + - name: Check format neotron-bmc-commands + run: cd neotron-bmc-commands && cargo fmt -- --check diff --git a/neotron-bmc-commands/src/lib.rs b/neotron-bmc-commands/src/lib.rs index 26e8393..3e63262 100644 --- a/neotron-bmc-commands/src/lib.rs +++ b/neotron-bmc-commands/src/lib.rs @@ -1,5 +1,4 @@ #![doc = include_str!("../README.md")] - #![no_std] #[derive(Debug, Copy, Clone, num_enum::IntoPrimitive, num_enum::TryFromPrimitive)]