Add Ember bringup app, LED platform layer, and unit tests: #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit Tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run unit tests in nrf_2.4.0 Docker container | |
| run: | | |
| docker run --rm \ | |
| -v "$GITHUB_WORKSPACE:/workspace" \ | |
| -w /workspace \ | |
| nrf_2.4.0:2.4.0 \ | |
| bash -c "source /ncs/zephyr/zephyr-env.sh \ | |
| && west twister -T tests/unit \ | |
| && rm -rf twister-out" |