Skip to content

Use EXCLUDE_FROM_ALL, update deps, clean up protozero inclusion #11

Use EXCLUDE_FROM_ALL, update deps, clean up protozero inclusion

Use EXCLUDE_FROM_ALL, update deps, clean up protozero inclusion #11

Workflow file for this run

name: C++ CI
on:
push:
paths:
- 'cpp/**'
pull_request:
paths:
- 'cpp/**'
jobs:
build:
strategy:
matrix:
os: [macos-14, ubuntu-24.04]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: cpp
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure with CMake
run: cmake -B build -S .
- name: Build the project
run: cmake --build build
- name: Run C++ tests
run: build/test/mlt-cpp-test