summaryrefslogtreecommitdiff
path: root/.github/workflows/arduino-hid.yml
blob: c8cc1b152ca3b9dbe56796051093690e770113a5 (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