24 lines
430 B
YAML
Vendored
24 lines
430 B
YAML
Vendored
# Copyright 2024 The Khronos Group Inc.
|
|
# Copyright 2024 RasterGrid Kft.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
name: Formatting
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
GIT_LFS_SKIP_SMUDGE: 1
|
|
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Run clang-format
|
|
uses: jidicula/clang-format-action@v4.13.0
|
|
with:
|
|
clang-format-version: '17'
|