Skip to content

Commit

Permalink
Create msvc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
visuve authored Apr 11, 2024
1 parent 29d823c commit b376e49
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: MSVC build

on: [push, pull_request]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: microsoft/setup-msbuild@v2

- name: Restore
run: nuget restore Pystykorva.sln

- name: Build
run: msbuild Pystykorva.sln /p:Platform=x64 /p:Configuration=Debug /m

- name: Test
run: out/x64d/bin/PystykorvaTests.exe

0 comments on commit b376e49

Please sign in to comment.