Skip to content

actions: ergogen

actions: ergogen #21

Workflow file for this run

name: Check ergogen
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
board: "pcbs/pcbs/keyboard.kicad_pcb"
dir: .
jobs:
ergogen:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install ergogen
run: npm i -g [email protected]
- name: Build with ergogen
run: ergogen ergogen -d /tmp/ergogen
ERC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -b ${{env.board}} -d ${{env.dir}} -s run_drc -v -i
DRC:
runs-on: ubuntu-latest
container:
image: setsoft/kicad_auto:ki6
steps:
- uses: actions/checkout@v3
- name: run kibot
run: |
kibot -c kibot.yml -b ${{env.board}} -d ${{env.dir}} -s run_erc -v -i