We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d20b83 commit d56175bCopy full SHA for d56175b
.github/workflows/kibot.yml
@@ -0,0 +1,39 @@
1
+name: KiBot
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - '**.sch'
7
+ - '**.kicad_pcb'
8
+ pull_request:
9
10
11
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
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
38
+ name: output
39
+ path: output
0 commit comments