diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b41bde..138edb1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,15 @@ jobs: - '.github/workflows/**' - if: steps.changes.outputs.rust == 'true' run: | - cargo build --target=thumbv6m-none-eabi - cd examples/adafruit_rgb && cargo build --target=thumbv6m-none-eabi - cd examples/ledmatrix && cargo build --examples + cargo build --target=thumbv6m-none-eabi --all-features + + pushd examples/adafruit_rgb + cargo build --target=thumbv6m-none-eabi --examples + popd + + pushd examples/ledmatrix + cargo build --examples + popd rustdoc: runs-on: ubuntu-latest