gh-80: add structured tree serizalization & remove global yaml usage #156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🩺 clang format | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/**' | |
- 'engine/runtime/**' | |
- 'engine/plugins/**' | |
- '.clang-format' | |
pull_request: | |
branches: [ main ] | |
jobs: | |
formatting-check: | |
name: Formatting Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
path: | |
- 'engine/runtime' | |
- 'engine/plugins' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run clang-format style check | |
uses: jidicula/clang-format-action@v4.10.1 | |
with: | |
clang-format-version: '15' | |
check-path: ${{ matrix.path }} |