mirror of
https://github.com/keenanjohnson/cellular-featherwing-pcb.git
synced 2025-04-26 05:15:58 +00:00
48 lines
1.8 KiB
YAML
48 lines
1.8 KiB
YAML
# MIT License
|
|
|
|
# Copyright (c) 2021 Neil Enns
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
# This workflow runs erc and drc checks on every pull request that touches a scehmatic or PCB file.
|
|
|
|
# To use this workflow in your own repo you need to edit the environment variables in the env: section
|
|
# below.
|
|
name: "KiBot - Preflight only"
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "*.sch"
|
|
- "*.kicad_pcb"
|
|
- ".kibot/*.kibot.yaml"
|
|
- ".github/workflows/*.yml"
|
|
|
|
jobs:
|
|
Preflight:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
# Run KiBot with the preflight script
|
|
- uses: INTI-CMNB/KiBot@v2_k6
|
|
with:
|
|
config: .kibot/preflight.kibot.yaml
|
|
schema: ${{ github.event.repository.name }}.kicad_sch
|
|
board: ${{ github.event.repository.name }}.kicad_pcb |