Merge pull request #138 from and3rson/fm_separateApp #586
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: code-quality | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- main | |
jobs: | |
clang-format: | |
runs-on: ubuntu-latest | |
container: ubuntu:24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install and Run clang-format | |
run: | | |
apt update -y | |
apt install -y make clang-format-17 | |
make clang-format | |
continue-on-error: false | |
cppcheck: | |
runs-on: ubuntu-latest | |
container: ubuntu:24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install and Run cppcheck | |
run: | | |
apt update -y | |
apt install -y make cppcheck | |
make cppcheck | |
continue-on-error: false |