mirror of
https://github.com/1technophile/OpenMQTTGateway.git
synced 2026-03-03 05:54:23 +01:00
* [CI] Update Github actions * Update setup-node --------- Co-authored-by: Florian <1technophile@users.noreply.github.com>
17 lines
324 B
YAML
17 lines
324 B
YAML
name: Check Code Format
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Check main format
|
|
uses: DoozyX/clang-format-lint-action@v0.6
|
|
with:
|
|
source: "./main"
|
|
extensions: "h,ino"
|
|
clangFormatVersion: 9
|