add stm32f103xB.cmake and stm32g0b1.cmake, add options for v2 and v3 … #105
This file contains 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: code_style | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
cpplint: | |
timeout-minutes: 1 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip3 install cpplint | |
- name: cpplint | |
run: | | |
cpplint Src/cyphal_application/*pp Src/cyphal_application/modules/*/*pp | |
cpplint Src/dronecan_application/*pp Src/dronecan_application/modules/*pp | |
cpplint Src/periphery/*/*pp Src/platform/*/*pp |