mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-12 19:24:34 +00:00
033c4e9a5b
* Updated style * Updated files * fixed new line * Updated spacing * File fix WIP * Updated to clang 13 * updated comment style * Removed old comment code
24 lines
552 B
YAML
24 lines
552 B
YAML
name: Check formatting
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
check_date:
|
|
runs-on: ubuntu-latest
|
|
name: Check formatting
|
|
strategy:
|
|
matrix:
|
|
path:
|
|
- "firmware/common"
|
|
- "firmware/application"
|
|
- "firmware/baseband"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: print latest_commit
|
|
run: echo ${{ github.sha }}
|
|
- name: clang-format Check
|
|
uses: jidicula/clang-format-action@v4.11.0
|
|
with:
|
|
check-path: ${{ matrix.path }}
|
|
fallback-style: Chromium
|