diff options
author | Li Jin <dragon-fly@qq.com> | 2021-02-23 15:38:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 15:38:30 +0800 |
commit | 7730727faa625463386cc84fb25c5cea26611914 (patch) | |
tree | a877b645196d1a7e2cac955ed1145e63bf0a8583 | |
parent | 2f071fc283553e12baf60248fdf21a39d90a6fdf (diff) | |
download | yuescript-7730727faa625463386cc84fb25c5cea26611914.tar.gz yuescript-7730727faa625463386cc84fb25c5cea26611914.tar.bz2 yuescript-7730727faa625463386cc84fb25c5cea26611914.zip |
Create windows.yml
-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 | |||