Skip to content

50 add parsing of version 0 configuration (#54) #221

50 add parsing of version 0 configuration (#54)

50 add parsing of version 0 configuration (#54) #221

Workflow file for this run

name: Windows
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: windows-latest
strategy:
matrix:
build_type: [Release]
architecture: [Win32, x64]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run Cmake
run: cmake -S . -B build -A ${{ matrix.architecture }} -D CMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build build --config ${{ matrix.build_type }} --parallel 10
- name: Run tests
run: |
cd build
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose