Revert "fake add component" #5
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: KiCad 3D Model Checker | |
on: | |
push: | |
paths: | |
- '**.kicad_pcb' | |
- '**.kicad_sch' | |
- '**.yml' | |
- '**.py' | |
- '3d-models/*' | |
pull_request: | |
paths: | |
- '**.kicad_pcb' | |
- '**.kicad_sch' | |
- '**.yml' | |
- '**.py' | |
- '3d-models/*' | |
jobs: | |
check-3d-models: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Check KiCad 3D Models | |
run: | | |
python .github/workflows/scripts/check_kicad_3d_models.py |