Clang-Format the FreeRTOS-Kernel #1920
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Checks | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check formatting of FreeRTOS-Kernel Source Files | |
uses: FreeRTOS/CI-CD-Github-Actions/formatting@CI-CD-Overhaul | |
with: | |
exclude-dirs: portable | |
- name: Check formatting of MPU Wrappers | |
uses: FreeRTOS/CI-CD-Github-Actions/formatting@CI-CD-Overhaul | |
with: | |
path: portable/Common | |
- name: Check formatting of Heap Files | |
uses: FreeRTOS/CI-CD-Github-Actions/formatting@CI-CD-Overhaul | |
with: | |
path: portable/Common | |
spell-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone This Repo | |
uses: actions/checkout@v3 | |
- name: Run spellings check | |
uses: FreeRTOS/CI-CD-GitHub-Actions/rust-spell-check@CI-CD-Overhaul | |
with: | |
path: ./ | |
link-verifier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone This Repo | |
uses: actions/checkout@v3 | |
- name: Link Verificication | |
uses: FreeRTOS/CI-CD-Github-Actions/link-verifier@CI-CD-Overhaul | |
with: | |
exclude-dirs: ThirdParty | |
verify-manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Run manifest verifier | |
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@CI-CD-Overhaul | |
with: | |
path: ./ | |
fail-on-incorrect-version: true |