mirror of
https://github.com/candle-usb/candleLight_fw.git
synced 2025-01-14 05:42:53 +08:00
19 lines
382 B
YAML
19 lines
382 B
YAML
|
name: PR
|
||
|
|
||
|
on: [ pull_request ]
|
||
|
|
||
|
jobs:
|
||
|
cpp_style_check:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: Check C Styling
|
||
|
steps:
|
||
|
- name: Checkout this commit
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 2
|
||
|
- name: uncrustify check
|
||
|
uses: Daniel-Trevitz/uncrustify-check@v1
|
||
|
with:
|
||
|
configFile: 'uncrustify.cfg'
|
||
|
checkedPaths: 'src;include'
|