Fix orientation of knitting machine connectors and use Hirose connector footprints in v1.5 #82
Workflow file for this run
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: AYAB Shield Hardware Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- ayab-shield/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ayab-shield/** | |
env: | |
workflow_project_dir: ayab-shield | |
kicad_project_name: arduino_shield | |
jobs: | |
buildfiles: | |
name: Design check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install KiCad | |
run: bash ./scripts/dependencies.sh | |
- name: Verify clean design files | |
run: | | |
kicad-cli jobset run --file ./ayab-library/ayab-jobset.kicad_jobset --output 546878ce-2bd2-4fb6-b2a1-e67785afa624 ${workflow_project_dir}/${kicad_project_name}.kicad_pro | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: erc-drc-artifacts | |
path: DesignChecks |