diff options
-rw-r--r-- | .github/workflows/windows.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml new file mode 100644 index 0000000..1f26848 --- /dev/null +++ b/.github/workflows/windows.yml | |||
@@ -0,0 +1,19 @@ | |||
1 | name: Windows | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: [ master ] | ||
6 | pull_request: | ||
7 | branches: [ master ] | ||
8 | workflow_dispatch: | ||
9 | |||
10 | jobs: | ||
11 | windows: | ||
12 | runs-on: windows-latest | ||
13 | steps: | ||
14 | - uses: actions/checkout@v2 | ||
15 | - name: Setup msbuild | ||
16 | uses: microsoft/setup-msbuild@v1 | ||
17 | - name: Windows build | ||
18 | run: msbuild Yuescript.sln -p:Configuration=debug | ||
19 | |||