Skip to content

restore warning

restore warning #139

Workflow file for this run

name: Windows
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure
run: cmake -S . -B build -DRPP_TEST=ON
- name: Build
run: cmake --build build --config Release
- name: Test
run: ctest --test-dir build -C Release --output-on-failure