Increase the FIRMWARE_FLASH_SIZE_LIMIT for the external flash variant. #135
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: Checks | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: igormisic/improject:v1.0.2 | |
| options: --privileged --ulimit core=-1 --security-opt seccomp=unconfined | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Mark repository as safe | |
| run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
| - name: Check format | |
| run: make check_format | |
| - name: Check MISRA C:2012 | |
| run: make misra |