15 lines
307 B
YAML
15 lines
307 B
YAML
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
steps:
|
|
- name: Git checkout Config
|
|
uses: actions/checkout@v4
|
|
- run: git clone https://github.com/zmkfirmware/zmk.git
|
|
- run: apt-get update
|
|
- run: apt-get install tree -y
|
|
- run: tree
|
|
|
|
|
|
|