Skip to content

Commit

Permalink
Merge pull request #416 from ccrma/win-gha
Browse files Browse the repository at this point in the history
Windows GHA
  • Loading branch information
gewang authored Nov 26, 2023
2 parents 2ce048e + 5f81553 commit 8630c0b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/win-build-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: windows - Build and Unit Tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
windows-build-unit-tests:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/[email protected]

- name: Compile - windows
run: MSBuild.exe /p:Configuration=Release /p:Platform="x64" src\visual-studio\chuck.vcxproj

- name: Unit Tests - windows
working-directory: .\src\test\
run: python test.py ..\visual-studio\x64\Release\chuck.exe

0 comments on commit 8630c0b

Please sign in to comment.