Skip to content

Update msvc.yml

Update msvc.yml #3

Workflow file for this run

# Workflow's name
name: msvc
# Run this workflow every time a new commit pushed to your repository
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Configure build PATH
uses: ilammy/msvc-dev-cmd@v1
- name: Configure CMake
run: |
cmake --preset x64-debug
- name: Build
run: cmake --build out/build/x64-debug