Skip to content

[#39] Integrate with existing (main) Windows GUI thread #171

[#39] Integrate with existing (main) Windows GUI thread

[#39] Integrate with existing (main) Windows GUI thread #171

Workflow file for this run

name: Windows
on:
push:
branches:
- develop
- master
- release/*
pull_request:
workflow_dispatch:
jobs:
build:
name: MSVC ${{ matrix.build_type }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-2019, windows-2022]
build_type: [Release, Debug]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: CMake configuration
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Building
run: cmake --build build
- name: Testing
run: ctest --test-dir build --output-on-failure