Skip to content

[build] Execute installation steps for CMake #58

[build] Execute installation steps for CMake

[build] Execute installation steps for CMake #58

Workflow file for this run

name: C/C++ CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y clang-tools check cmake
- name: cmake
run: "( rm -rf build && mkdir build && cd build && cmake .. && make && CTEST_OUTPUT_ON_FAILURE=1 make
test && echo OK )"