mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2025-12-12 01:00:29 +08:00
24 lines
350 B
YAML
24 lines
350 B
YAML
name: Arduino HID CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
image: python
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Prepare platformio
|
|
run: pip install platformio
|
|
|
|
- name: Build all
|
|
run: make -C hid/arduino _build_all
|