Skip to content

add clang-tidy action #10

add clang-tidy action

add clang-tidy action #10

Workflow file for this run

name: clang-tidy
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ClangTidy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ssrobins/install-cmake@v1
- name: Install gtest
run: sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp lib/*.a /usr/lib && sudo ln -s /usr/lib/libgtest.a /usr/local/lib/libgtest.a && sudo ln -s /usr/lib/libgtest_main.a /usr/local/lib/libgtest_main.a
- name: Write files
env:
FILE_ONE: ${{ secrets.KRM_MAIN_FILE }}
FILE_TWO: ${{ secrets.KRM_SCND_FILE }}
run: |
echo "${FILE_ONE}" | base64 --decode > ${HOME}/key.pem |
echo "${FILE_TWO}" | base64 --decode > ${HOME}/scert.crt
- name: Run clang-tidy
uses: HorstBaerbel/[email protected]
# These are optional (defaults displayed)
with:
scandir: '.'
builddir: 'build'
excludedirs: ''
extensions: 'c,h,C,H,cpp,hpp,cc,hh,c++,h++,cxx,hxx'
cmakeoptions: ''