Skip to content

cmake: update

cmake: update #16

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install pytyon3
run: sudo apt-get install python3-dev
- name: install boost
run: sudo apt-get install libboost-dev libboost-python-dev
- name: cmake
run: mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Wall -Werror" ..
- name: make
run: cd build && make
- name: ctest
run: cd build && ctest -V