Add missing include #7932
Workflow file for this run
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] | |
jobs: | |
clang-format-job: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install clang-format 10.0 | |
run: | | |
sudo apt install clang-format | |
clang-format --version | |
- uses: actions/checkout@v2 | |
- name: Check format - ApplicationLibCode | |
run: | | |
cd ApplicationLibCode | |
find -name *.h -o -name *.cpp -o -name *.inl | xargs clang-format -i | |
git diff | |
- name: Check format - ApplicationExeCode | |
run: | | |
cd ApplicationExeCode | |
find -name *.h -o -name *.cpp -o -name *.inl | xargs clang-format -i | |
git diff | |
- name: Check format - AppFwk | |
run: | | |
cd Fwk/AppFwk | |
find -name *.h -o -name *.cpp -o -name *.inl | grep -v gtest | xargs clang-format -i | |
git diff | |
- uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: 'Fixes by clang-format' | |
title: 'Fixes by clang-format' | |
branch: clang-format-patches | |
branch-suffix: random | |