summaryrefslogtreecommitdiff
path: root/.github/workflows/arduino-hid.yml
blob: 5a036d1024c2c5c6c8168132de6974f647092dd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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