Skip to content

Add boost install to CMake action #7

Add boost install to CMake action

Add boost install to CMake action #7

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "install boost"
run: sudo apt-get -y install libboost-dev
- name: "run CMake"
run: cmake -S . build
- name: "build project"
run: cmake --build build --target all -j4