Skip to content

Windows build and tests #763

Windows build and tests

Windows build and tests #763

Workflow file for this run

name: Windows build and tests
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
schedule:
- cron: '38 2 * * *'
jobs:
win-build:
timeout-minutes: 30
runs-on: windows-2022
steps:
- uses: actions/checkout@v6
- name: configure
run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1 -DCMAKE_COMPILE_WARNING_AS_ERROR=ON
- name: build
run: cmake --build build --config Debug
- name: test
run: cd build && ctest --output-on-failure -C Debug