From 7bb1490e9ea96dd7ed7304bd1bef60f3faed6923 Mon Sep 17 00:00:00 2001 From: tomaszduda23 Date: Mon, 11 Jul 2022 01:39:56 +0900 Subject: [PATCH] add hid ci (#97) --- .github/workflows/hid.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/hid.yml 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