Skip to content
This repository was archived by the owner on Apr 29, 2026. It is now read-only.

Refactor cone building logic in pe_synth.h for improved safety and … #138

Refactor cone building logic in pe_synth.h for improved safety and …

Refactor cone building logic in pe_synth.h for improved safety and … #138

Workflow file for this run

name: ci
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -S test -B build_test_ci -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build_test_ci --config Debug -j 2
- name: Test
run: ctest --test-dir build_test_ci --output-on-failure --build-config Debug