diff options
Diffstat (limited to '.github/workflows/arduino-hid.yml')
-rw-r--r-- | .github/workflows/arduino-hid.yml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/.github/workflows/arduino-hid.yml b/.github/workflows/arduino-hid.yml index 5a036d10..c8cc1b15 100644 --- a/.github/workflows/arduino-hid.yml +++ b/.github/workflows/arduino-hid.yml @@ -1,23 +1,23 @@ name: Arduino HID CI on: - push: - branches: [master] - pull_request: - branches: [master] + push: + branches: [master] + pull_request: + branches: [master] jobs: - build: - runs-on: ubuntu-latest + build: + runs-on: ubuntu-latest - container: - image: python + container: + image: python - steps: - - uses: actions/checkout@v3 + steps: + - uses: actions/checkout@v3 - - name: Prepare platformio - run: pip install platformio + - name: Prepare platformio + run: pip install platformio - - name: Build all - run: make -C hid/arduino _build_all + - name: Build all + run: make -C hid/arduino _build_all |