Support render texture for Vulkan+Impeller (#129) #421
This file contains hidden or 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: Analyze | |
| on: [push, pull_request] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: src | |
| - name: Install depot_tools | |
| run: | | |
| git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git | |
| echo "$PWD/depot_tools" >> $GITHUB_PATH | |
| - name: Run gclient sync | |
| run: | | |
| gclient config --name=src --unmanaged https://github.com/${{ github.repository }} | |
| gclient sync -v --no-history --shallow --nohooks | |
| - name: Verify C/C++ formatting | |
| working-directory: src | |
| run: | | |
| FILES=$(git ls-files -- '*.h' '*.cc' '*.cpp' | grep -v /third_party/) | |
| third_party/clang/bin/clang-format --style=file --dry-run --Werror $FILES | |
| - name: Verify GN formatting | |
| working-directory: src | |
| run: | | |
| FILES=$(git ls-files -- '*.gn' '*.gni') | |
| third_party/gn/gn format --dry-run $FILES |