Update README.md #24
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: Check clang-tidy | |
on: | |
push: | |
branches-ignore: | |
- master | |
- staging.tmp | |
- trying.tmp | |
- staging-squash-merge.tmp | |
pull_request: | |
jobs: | |
check-clang-tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install clang-tidy | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install pkg-config cmake ninja-build libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev libx264-dev clang-tidy libvulkan-dev glslang-tools spirv-tools -y | |
- name: Build with clang-tidy | |
run: | | |
mkdir clang-tidy | |
cd clang-tidy | |
cmake -G Ninja -DCMAKE_CXX_CLANG_TIDY="clang-tidy;-warnings-as-errors=*" -DCMAKE_C_CLANG_TIDY="clang-tidy;-warnings-as-errors=*" -DCMAKE_BUILD_TYPE=Debug -Werror=dev -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE=. .. | |
cmake --build . --config Debug --target everything -- -k 0 | |