Skip to content

build: Update to header 1.4.336 #639

build: Update to header 1.4.336

build: Update to header 1.4.336 #639

Workflow file for this run

# Copyright 2023 Valve Corporation
# Copyright 2023 LunarG, Inc.
#
# SPDX-License-Identifier: Apache-2.0
name: format
on:
push:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
clang-format:
name: clang-format
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
path:
- 'include'
- 'src'
- 'tests'
steps:
- uses: actions/checkout@v6
- name: clang-format version
run: clang-format --version
- name: Run clang-format
uses: jidicula/[email protected]
with:
clang-format-version: '18'
check-path: ${{ matrix.path }}