diff options
author | Maxim Devaev <[email protected]> | 2022-07-10 19:42:12 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-07-10 19:42:12 +0300 |
commit | 50b9bb5950fad440261160aaed747d7f83c8e520 (patch) | |
tree | b10ab7824244385a6a3541b0824adef4cb6d3219 /.github/workflows/hid.yml | |
parent | 7bb1490e9ea96dd7ed7304bd1bef60f3faed6923 (diff) |
style fix
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 |