diff options
Diffstat (limited to '.github/workflows/pico-hid.yml')
-rw-r--r-- | .github/workflows/pico-hid.yml | 20 |
1 files changed, 20 insertions, 0 deletions
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 |