Skip to content

Commit d56175b

Browse files
committed
Add initial kibot CI job using default kibot config yml
1 parent 9d20b83 commit d56175b

File tree

2 files changed

+1132
-0
lines changed

2 files changed

+1132
-0
lines changed

.github/workflows/kibot.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: KiBot
2+
3+
on:
4+
push:
5+
paths:
6+
- '**.sch'
7+
- '**.kicad_pcb'
8+
pull_request:
9+
paths:
10+
- '**.sch'
11+
- '**.kicad_pcb'
12+
13+
jobs:
14+
kibot:
15+
name: KiBot
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v3
22+
with:
23+
fetch-depth: 0 # all branches and tags
24+
25+
- uses: INTI-CMNB/KiBot@v2
26+
with:
27+
# Required - kibot config file
28+
config: kibot_generated.kibot.yaml
29+
# optional - prefix to output defined in config
30+
dir: output
31+
# optional - schematic file
32+
#schema: 'schematic.sch'
33+
# optional - PCB design file
34+
#board: 'pcb.kicad_pcb'
35+
- name: upload results
36+
uses: actions/upload-artifact@v2
37+
with:
38+
name: output
39+
path: output

0 commit comments

Comments
 (0)