Skip to content

Update new system kernel arch. #182

Update new system kernel arch.

Update new system kernel arch. #182

Workflow file for this run

name: clang-format check
on: [push, pull_request]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- check: './include'
exclude: 'arch32 | init.c' # Nothing to exclude
- check: './source'
exclude: 'port' # Nothing to exclude
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check for C programs.
uses: jidicula/[email protected]
with:
clang-format-version: '17'
check-path: ${{ matrix.path['check'] }}
exclude-regex: ${{ matrix.path['exclude'] }}
fallback-style: 'LLVM'