Skip to content

Allow Teakra to either own DSP memory or have the user provide their own #10

Allow Teakra to either own DSP memory or have the user provide their own

Allow Teakra to either own DSP memory or have the user provide their own #10

Workflow file for this run

# SPDX-FileCopyrightText: 2025 Andrea Pappacoda <andrea@pappacoda.it>
# SPDX-License-Identifier: MIT
name: build
on: push
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Configure
run: cmake -B build
- name: Build
run: cmake --build build --parallel
- name: Test
working-directory: build
run: ctest --verbose