Allow Teakra to either own DSP memory or have the user provide their own #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |