mirror of
https://github.com/Aitum/obs-aitum-multistream.git
synced 2024-11-22 18:32:32 +01:00
16 lines
346 B
YAML
16 lines
346 B
YAML
name: Check Code Formatting 🛠️
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: clang-format check 🐉
|
|
id: clang-format
|
|
uses: ./.github/actions/run-clang-format
|
|
with:
|
|
failCondition: error
|