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