diff options
Diffstat (limited to '.github/workflows/hid.yml')
-rw-r--r-- | .github/workflows/hid.yml | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/.github/workflows/hid.yml b/.github/workflows/hid.yml index c3252f2a..984f77dd 100644 --- a/.github/workflows/hid.yml +++ b/.github/workflows/hid.yml @@ -7,13 +7,17 @@ on: 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 _build_all + 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 _build_all |