commit
929b7d7179
2 changed files with 3616 additions and 0 deletions
23
.github/workflows/uncrustify.yml
vendored
Normal file
23
.github/workflows/uncrustify.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
name: "Uncrustify"
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master, uncrustify]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
uncrustify:
|
||||||
|
name: Uncrustify
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
run-uncrust: ${{ contains(github.event.head_commit.message, 'Bump version to') || contains(github.event.head_commit.message, 'CI_FORCE_UNCRUST') || github.event_name == 'pull_request' }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Run style check
|
||||||
|
uses: coleaeason/actions-uncrustify@v1
|
||||||
|
with:
|
||||||
|
configPath: 'uncrustify.cfg'
|
3593
uncrustify.cfg
Normal file
3593
uncrustify.cfg
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue