Skip to content

Fix issues with Github CI #22

Fix issues with Github CI

Fix issues with Github CI #22

Workflow file for this run

name: CMake build CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
cmake:
name: Build with CMake
runs-on: ubuntu-24.04
steps:
- name: Install dependencies with awalsh128/cache-apt-pkgs-action
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libboost-all-dev libspdlog-dev libfmt-dev
# Need a more modern version of spdlog than provided by 20.04
add-repository: ppa:savoury1/backports
version: 1.0
- name: Checkout repository
uses: actions/checkout@v5
with:
submodules: recursive
- name: Build Project
uses: threeal/cmake-action@v2.1.0