File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Astyle Check
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - name : Checkout
11+ uses : actions/checkout@v2
12+
13+ - name : Astyle check
14+ id : Astyle
15+ uses : stm32duino/actions/astyle-check@master
16+ # Use the output from the `Astyle` step
17+ - name : Astyle Errors
18+ if : failure()
19+ run : |
20+ cat ${{ steps.Astyle.outputs.astyle-result }}
21+ exit 1
Original file line number Diff line number Diff line change 1+ name : Compile Examples
2+ on :
3+ - push
4+ - pull_request
5+
6+ jobs :
7+ build :
8+ runs-on : ubuntu-latest
9+
10+ strategy :
11+ matrix :
12+ fqbn :
13+ - STMicroelectronics:stm32:Nucleo_64:pnum=NUCLEO_L476RG
14+ # - STMicroelectronics:stm32:Disco:pnum=B_U585I_IOT02A
15+ # - STMicroelectronics:stm32:Disco:pnum=STM32WB5MM_DK
16+
17+ steps :
18+ - uses : actions/checkout@v2
19+ - uses : arduino/compile-sketches@v1
20+ with :
21+ github-token : ${{ secrets.GITHUB_TOKEN }}
22+ fqbn : ${{ matrix.fqbn }}
23+ platforms : |
24+ - source-url: https://github.com/stm32duino/BoardManagerFiles/raw/master/package_stmicroelectronics_index.json
25+ name: STMicroelectronics:stm32
Original file line number Diff line number Diff line change 1+ name : Spell Check
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - name : Checkout
11+ uses : actions/checkout@v2
12+
13+ - name : Spell check
14+ uses : arduino/actions/libraries/spell-check@master
15+ with :
16+ ignore-words-list : ./extras/codespell-ignore-words-list.txt
Original file line number Diff line number Diff line change 1+ ois
You can’t perform that action at this time.
0 commit comments