Skip to content

Merge branch 'main' of https://github.com/stephenberry/glaze #1

Merge branch 'main' of https://github.com/stephenberry/glaze

Merge branch 'main' of https://github.com/stephenberry/glaze #1

Workflow file for this run

name: msvc
on:
push:
branches:
- main
- feature/*
paths-ignore:
- '**/*.md'
- 'docs/**'
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
- 'docs/**'
workflow_dispatch:
env:
CTEST_OUTPUT_ON_FAILURE: 1
BUILD_TYPE: Debug
jobs:
build:
runs-on: windows-latest
timeout-minutes: 10
strategy:
matrix:
cpp_version: [23]
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_STANDARD=${{matrix.cpp_version}}
- name: Build
run: cmake --build build --config ${{env.BUILD_TYPE}} --parallel
- name: Test
working-directory: build
run: ctest --build-config ${{env.BUILD_TYPE}}