ResInsight/.github/workflows/clang-format.yml

37 lines
1.0 KiB
YAML
Raw Normal View History

name: clang-format
on: [push]
jobs:
clang-format-job:
2020-11-06 02:05:16 -06:00
runs-on: ubuntu-20.04
steps:
2020-11-06 02:05:16 -06:00
- name: Install clang-format 10.0
run: |
2020-11-06 02:05:16 -06:00
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
2020-11-06 02:05:16 -06:00
find -name *.h -o -name *.cpp -o -name *.inl | xargs clang-format -i
2020-06-19 00:51:17 -05:00
git diff
- name: Check format - AppFwk
run: |
cd Fwk/AppFwk
2020-11-06 02:05:16 -06:00
find -name *.h -o -name *.cpp -o -name *.inl | grep -v gtest | xargs clang-format -i
git diff
2020-11-06 02:12:05 -06:00
- 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
2020-06-19 00:51:17 -05:00