summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2023-08-04 03:15:14 +0300
committerMaxim Devaev <[email protected]>2023-08-04 03:54:42 +0300
commit8c6e9eb4c112a4a63f5262daae1a9d24757cc6f2 (patch)
tree7d450caa4a6fd1b27312789704cfefca9a85a953
parentb2c9236721c471dc80197dc6522db54d7512c052 (diff)
indent fix
-rw-r--r--.github/workflows/arduino-hid.yml28
-rw-r--r--.github/workflows/pico-hid.yml24
-rw-r--r--.github/workflows/tox.yml24
3 files changed, 38 insertions, 38 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
diff --git a/.github/workflows/pico-hid.yml b/.github/workflows/pico-hid.yml
index f8cc41b3..4866a218 100644
--- a/.github/workflows/pico-hid.yml
+++ b/.github/workflows/pico-hid.yml
@@ -1,20 +1,20 @@
name: Pico 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
- steps:
- - uses: actions/checkout@v3
+ steps:
+ - uses: actions/checkout@v3
- - name: Installing deps...
- run: sudo apt-get install cmake gcc-arm-none-eabi build-essential
+ - name: Installing deps ...
+ run: sudo apt-get install cmake gcc-arm-none-eabi build-essential
- - name: Running tests ...
- run: make -C hid/pico all
+ - name: Running tests ...
+ run: make -C hid/pico all
diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml
index ed0528d4..fdd51361 100644
--- a/.github/workflows/tox.yml
+++ b/.github/workflows/tox.yml
@@ -1,20 +1,20 @@
name: TOX 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
- steps:
- - uses: actions/checkout@v2
+ steps:
+ - uses: actions/checkout@v2
- - name: Building testenv ...
- run: make testenv
+ - name: Building testenv ...
+ run: make testenv
- - name: Running tests ...
- run: make tox CMD="tox -c testenv/tox.ini"
+ - name: Running tests ...
+ run: make tox CMD="tox -c testenv/tox.ini"