Add 10mm electrolytic cap to fix overvoltage spikes (#74) #47
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: Run KiBot Checks | |
| on: | |
| push: | |
| paths: | |
| - '**.kicad_sch' | |
| - '**.kicad_pcb' | |
| - '.github/workflows/kibot_checks.yml' | |
| branches-ignore: | |
| - gh-pages | |
| pull_request: | |
| paths: | |
| - '**.kicad_sch' | |
| - '**.kicad_pcb' | |
| - '.github/workflows/kibot_checks.yml' | |
| branches-ignore: | |
| - gh-pages | |
| jobs: | |
| kibot-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get repo | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: "recursive" | |
| - name: Run KiBot | |
| uses: INTI-CMNB/KiBot@v2_k9_1_8_4 | |
| with: | |
| config: kicad/checks.kibot.yaml | |
| # optional - prefix to output defined in config | |
| dir: output | |
| # optional - schematic file | |
| schema: 'kicad/bms-c1.kicad_sch' | |
| # optional - PCB design file | |
| board: 'kicad/bms-c1.kicad_pcb' |