microbit-bsp 0.4.0

An embassy-based boards support package (BSP) for BBC Micro:bit v2
Documentation
name: CI

on:
  push:
    # Run on the main branch
    branches:
      - main
    # Releases are tags named 'v<version>', and must have the "major.minor.micro", for example: "0.1.0".
    # Release candidates are tagged as `v<version>-rc<num>`, for example: "0.1.0-rc1".
    tags:
      - "v*"
  # Also on PRs, just be careful not to publish anything
  pull_request:


jobs:
  ci:
    runs-on: ubuntu-24.04
    steps:
      - uses: actions/checkout@v3

      - name: Build
        run: cargo build --release

      - name: Examples
        run: for i in accelerometer display ble-nrf-softdevice ble-trouble; do pushd examples/$i; cargo build --release; popd; done;