Skip to content

Commit

Permalink
indent fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdevaev committed Aug 4, 2023
1 parent b2c9236 commit 8c6e9eb
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 38 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/arduino-hid.yml
Original file line number Diff line number Diff line change
@@ -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
24 changes: 12 additions & 12 deletions .github/workflows/pico-hid.yml
Original file line number Diff line number Diff line change
@@ -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
24 changes: 12 additions & 12 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 8c6e9eb

Please sign in to comment.