diff options
author | Maxim Devaev <[email protected]> | 2023-08-04 02:29:12 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-08-04 02:41:38 +0300 |
commit | 750b9214fe38e9bac27c385dbf626288f8f9aafb (patch) | |
tree | fb9990056e29f16f56a011bce203d604c7ca01ea | |
parent | 318724e3ae43ee561892a29f4f3f075e81293d06 (diff) |
pico hid ci
-rw-r--r-- | .github/workflows/arduino-hid.yml (renamed from .github/workflows/hid.yml) | 4 | ||||
-rw-r--r-- | .github/workflows/pico-hid.yml | 20 |
2 files changed, 22 insertions, 2 deletions
diff --git a/.github/workflows/hid.yml b/.github/workflows/arduino-hid.yml index 984f77dd..5a036d10 100644 --- a/.github/workflows/hid.yml +++ b/.github/workflows/arduino-hid.yml @@ -1,4 +1,4 @@ -name: HID CI +name: Arduino HID CI on: push: @@ -20,4 +20,4 @@ jobs: run: pip install platformio - name: Build all - run: make -C hid _build_all + run: make -C hid/arduino _build_all diff --git a/.github/workflows/pico-hid.yml b/.github/workflows/pico-hid.yml new file mode 100644 index 00000000..f8cc41b3 --- /dev/null +++ b/.github/workflows/pico-hid.yml @@ -0,0 +1,20 @@ +name: Pico HID CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Installing deps... + run: sudo apt-get install cmake gcc-arm-none-eabi build-essential + + - name: Running tests ... + run: make -C hid/pico all |