Monorepo of composite actions and reusable workflows.
Installs KiCad to the runner environment.
Note
At present, only the latest KiCad version and Ubuntu runners are supported.
steps:
- name: Set up KiCad
uses: loozhengyuan/actions/setup-kicadInstalls KiCad Library Utils to the runner environment. Used by KiCad libraries to check symbols/footprints in CI environment.
steps:
- name: Set up KiCad Library Utils
uses: loozhengyuan/actions/setup-kicad-library-utilsBy default, the master branch will be installed. You can specify a different version (branch, tag, or commit) using the version input:
steps:
- name: Set up KiCad Library Utils
uses: loozhengyuan/actions/setup-kicad-library-utils
with:
version: "v1.0.0"Installs the Zephyr SDK in runner environment.
At minimum, the version argument must be specified.
steps:
- name: Set up Zephyr SDK
uses: loozhengyuan/actions/setup-zephyr-sdk
with:
version: "0.16.5-1"By default, all toolchains will be installed. You can use toolchains command to specify a list of toolchains to be used:
steps:
- name: Set up Zephyr SDK
uses: loozhengyuan/actions/setup-zephyr-sdk
with:
version: "0.16.5-1"
toolchains: arm-zephyr-eabi