Skip to content

Fix typo in warning message and make more verbose #97

Fix typo in warning message and make more verbose

Fix typo in warning message and make more verbose #97

Workflow file for this run

name: Windows Builds
on: #[push, pull_request]
push:
paths-ignore:
- '*.md'
- 'docs/**'
- 'data/**'
- 'scripts/**'
- '.github/workflows/linux.yml'
- '.lgtm.yml'
jobs:
windows-build:
name: Compilation
runs-on: windows-2022
strategy:
matrix:
type: [Debug, Release]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Configure
run: cmake -Bbuild -DNDR_UNIT_TESTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.type }}
- name: Build
run: cmake --build build --config ${{ matrix.type }} -j2
- name: Test
run: |
cd build
ctest -C ${{ matrix.type }} -j2 -V