.github: add CMake run

This commit is contained in:
Kosma Moczek 2022-06-02 23:14:42 +02:00
parent 2b8b64c784
commit 8e5aaabd03

View File

@ -8,6 +8,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y clang-tools check
run: sudo apt-get install -y clang-tools check cmake
- name: make
run: make
- name: cmake
run: "( rm -rf build && mkdir build && cd build && cmake .. && make && ./tests && echo OK )"