From 7730727faa625463386cc84fb25c5cea26611914 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Tue, 23 Feb 2021 15:38:30 +0800 Subject: Create windows.yml --- .github/workflows/windows.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/windows.yml 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 @@ +name: Windows + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + workflow_dispatch: + +jobs: + windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - name: Setup msbuild + uses: microsoft/setup-msbuild@v1 + - name: Windows build + run: msbuild Yuescript.sln -p:Configuration=debug + -- cgit v1.2.3-55-g6feb