Skip to content

Merge pull request #3 from mosfet80/patch-2 #8

Merge pull request #3 from mosfet80/patch-2

Merge pull request #3 from mosfet80/patch-2 #8

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
- 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