Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ ci-test ] | |
jobs: | |
container-test-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install kicad | |
run: | | |
sudo add-apt-repository --yes ppa:kicad/kicad-7.0-releases | |
sudo apt update | |
sudo apt install kicad | |
- run: kicad-cli version | |
- name: install kikit | |
- run: | | |
pip install kikit | |
sudo apt install make cmark xsltproc | |
- name: build present page | |
run: | |
make web | |
- run: tree build/ |