Include top level cmakelist and fix formatting

This commit is contained in:
Magne Sjaastad
2021-04-29 10:42:16 +02:00
committed by GitHub
parent f3e769ad13
commit 5bc599cd57
2 changed files with 412 additions and 383 deletions

View File

@@ -12,18 +12,20 @@ jobs:
- uses: actions/checkout@v2
- name: Check format - ApplicationLibCode
run: |
~/.local/bin/cmake-format -c ${{ github.workspace }}/cmake/cmake-format.py -i CMakeLists.txt
cd ApplicationLibCode
find -name CMake*.txt | xargs ~/.local/bin/cmake-format -c ${{ github.workspace }}/cmake/cmake-format.py -i
git diff
- name: Check format - ApplicationExeCode
run: |
cd ..
cd ApplicationExeCode
find -name CMake*.txt | xargs ~/.local/bin/cmake-format -c ${{ github.workspace }}/cmake/cmake-format.py -i
git diff
- name: Check format - AppFwk
run: |
cd ..
cd Fwk/AppFwk
find -name CMake*.txt | xargs ~/.local/bin/cmake-format -c ${{ github.workspace }}/cmake/cmake-format.py -i
cd ..
git diff
- uses: peter-evans/create-pull-request@v3
with: