2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-12-02 09:17:47 +00:00
Files
OpenAssetTools/.github/workflows/check-formatting.yaml
dependabot[bot] 54ed17806c chore(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-21 22:02:07 +00:00

26 lines
588 B
YAML

name: check-formatting
on:
pull_request:
jobs:
check-formatting:
runs-on: ubuntu-latest
name: Check formatting
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: recursive
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v2
with:
version: "20.1"
- name: Test formatting for all files
working-directory: ${{ github.workspace }}
run: |
export CLANG_FORMAT_BIN="${LLVM_PATH}/bin/clang-format"
./scripts/check-format.sh