Skip to content

Commit

Permalink
Add initial kibot CI job using default kibot config yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcxldn committed Aug 17, 2023
1 parent 9d20b83 commit d56175b
Show file tree
Hide file tree
Showing 2 changed files with 1,132 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/kibot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: KiBot

on:
push:
paths:
- '**.sch'
- '**.kicad_pcb'
pull_request:
paths:
- '**.sch'
- '**.kicad_pcb'

jobs:
kibot:
name: KiBot

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # all branches and tags

- uses: INTI-CMNB/KiBot@v2
with:
# Required - kibot config file
config: kibot_generated.kibot.yaml
# optional - prefix to output defined in config
dir: output
# optional - schematic file
#schema: 'schematic.sch'
# optional - PCB design file
#board: 'pcb.kicad_pcb'
- name: upload results
uses: actions/upload-artifact@v2
with:
name: output
path: output
Loading

0 comments on commit d56175b

Please sign in to comment.