Add compute_t struct and init_compute function (#57) #243
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@v6 | |
| with: | |
| submodules: recursive | |
| token: ${{ secrets.PAT_TOKEN }} | |
| fetch-depth: 0 | |
| - name: Run UNITY Testing files | |
| run: | | |
| docker compose run --rm ner-gcc-arm \ | |
| sh -e -c "python3 Drivers/Embedded-Base/ner_environment/build_system/test_runner.py" | |