add clang-tidy action #85
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: coverage | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
BUILD_TYPE: Debug | |
jobs: | |
Coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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: Coverage configure | |
run: cmake -DCMAKE_BUILD_TYPE=Coverage . | |
- name: Coverage build | |
run: cmake --build . --config Coverage | |
- name: Coverage test | |
run: ctest -VV -C Coverage | |
- name: Generate Test Report | |
uses: threeal/gcovr-action@latest | |
with: | |
coveralls-send: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |