Skip to content

2025-08-26

2025-08-26 #12

Workflow file for this run

name: Build
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
name: Build DKTP on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up CMake
uses: lukka/get-cmake@v3.27.0
- name: Configure DKTP (CMake)
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build DKTP (CMake)
run: cmake --build build --config Release
- name: Run Tests (if available)
run: ctest --test-dir build --output-on-failure
if: always()