Skip to content

2025.1 Release (Washago) #3

2025.1 Release (Washago)

2025.1 Release (Washago) #3

name: C Coding Style Check
# Runs on pushes to pull request
on: pull_request
jobs:
# Build job
clang-format-style-check:
name: C Coding Style Check (clang-format check)
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Run formatting check
uses: waterloo-rocketry/actions/clang-format-check@main
with:
clang-format-config-path: '.clang-format'
c-source-files: 'include/*.h common/*.c pic18f26k83/*.c unit_tests/*.c'