mirror of
https://github.com/foostan/crkbd.git
synced 2025-02-23 06:22:53 +00:00
23 lines
490 B
YAML
23 lines
490 B
YAML
name: kicad-footprints
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
on-pull-request:
|
|
name: kicad-footprints
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python 3.6
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.6'
|
|
- name: Init tools
|
|
run: |
|
|
make tools
|
|
- name: Check lib table
|
|
run: |
|
|
make kicad-footprints-check-lib-table
|
|
- name: Check all
|
|
run: |
|
|
make kicad-footprints-check-all
|