Skip to content

Commit

Permalink
Create msvc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hanxi authored Nov 28, 2024
1 parent 0d25b1e commit e65ce04
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 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: Add MSBuild to PATH
uses: microsoft/[email protected]

- name: Configure CMake
run: |
cmake --preset x64-debug
- name: Build
run: cmake --build out/build/x64-debug

0 comments on commit e65ce04

Please sign in to comment.