added includes #158
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 Test Check | |
| on: [push] | |
| jobs: | |
| test-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Run UNITY Testing files | |
| run: | | |
| if ! docker compose run --rm ner-gcc-arm \ | |
| bash -c "python3 Drivers/Embedded-Base/ner_environment/build_system/test_runner.py"; then | |
| echo "Unit tests failed." | |
| exit 1 | |
| fi |