diff options
Diffstat (limited to '.github/workflows/hid.yml')
-rw-r--r-- | .github/workflows/hid.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/hid.yml b/.github/workflows/hid.yml new file mode 100644 index 00000000..c3252f2a --- /dev/null +++ b/.github/workflows/hid.yml @@ -0,0 +1,19 @@ +name: 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 _build_all |