Skip to content

Readthrough part1

Readthrough part1 #45

Workflow file for this run

name: MSVC
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
msvc-build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up CMake
uses: jwlawson/actions-setup-cmake@v1
- name: Create build directory
run: cmake -E make_directory build
- name: Configure CMake
working-directory: ./build
run: cmake ..
- name: Build
working-directory: ./build
run: cmake --build . --config Release