Skip to content

Commit 8afa6ef

Browse files
committed
chore: Verbose PIO CI
1 parent a6b3317 commit 8afa6ef

File tree

2 files changed

+28
-24
lines changed

2 files changed

+28
-24
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ end_of_line = lf
77
charset = utf-8
88
trim_trailing_whitespace = true
99
insert_final_newline = true
10+
11+
[*.yml]
12+
indent_size = 2
13+
trim_trailing_whitespace = false

.github/workflows/platformio.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88

99
jobs:
1010
platformio:
@@ -44,26 +44,26 @@ jobs:
4444
- featheresp32
4545
- pico32
4646
steps:
47-
- uses: actions/checkout@v2
48-
- name: Cache pip
49-
uses: actions/cache@v2
50-
with:
51-
path: ~/.cache/pip
52-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
53-
restore-keys: ${{ runner.os }}-pip-
54-
- name: Cache PlatformIO
55-
uses: actions/cache@v2
56-
with:
57-
path: ~/.platformio
58-
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
59-
- name: Set up Python
60-
uses: actions/setup-python@v2
61-
- name: Install PlatformIO
62-
run: |
63-
python -m pip install --upgrade pip
64-
pip install --upgrade platformio
65-
pip install "click!=8.0.2" # See platformio/platformio-core#4078
66-
- name: Run PlatformIO
67-
run: pio ci --lib="." --board="${{matrix.board}}"
68-
env:
69-
PLATFORMIO_CI_SRC: examples/${{ matrix.example }}
47+
- uses: actions/checkout@v2
48+
- name: Cache pip
49+
uses: actions/cache@v2
50+
with:
51+
path: ~/.cache/pip
52+
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
53+
restore-keys: ${{ runner.os }}-pip-
54+
- name: Cache PlatformIO
55+
uses: actions/cache@v2
56+
with:
57+
path: ~/.platformio
58+
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
59+
- name: Set up Python
60+
uses: actions/setup-python@v2
61+
- name: Install PlatformIO
62+
run: |
63+
python -m pip install --upgrade pip
64+
pip install --upgrade platformio
65+
pip install "click!=8.0.2" # See platformio/platformio-core#4078
66+
- name: Run PlatformIO
67+
run: pio ci --lib="." --board="${{matrix.board}}" --verbose
68+
env:
69+
PLATFORMIO_CI_SRC: examples/${{ matrix.example }}

0 commit comments

Comments
 (0)