Skip to content

2026-06-16

2026-06-16 #49

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:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Checkout source
uses: actions/checkout@v5
- name: Set up MSVC
if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
- name: Configure DKTP
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
- name: Build DKTP
run: cmake --build build
- name: Run Tests if available
if: always()
run: ctest --test-dir build --output-on-failure