From d54d92aec0a90e7a3d1b3b57ed64cda25912226f Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Mon, 20 Nov 2023 14:19:13 +0100 Subject: [PATCH] workflows: add test.yaml --- .gitea/workflows/test.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..c55f1c2 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,20 @@ +name: Test MS build +run-name: Test MS build +on: [push] + +jobs: + Build: + runs-on: windows + strategy: + matrix: + configuration: [Release] + platform: [x64] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1.1 + - name: Setup NuGet + uses: nuget/setup-nuget@v1 + - name: Build Installer + run: msbuild 'Installer/Installer.sln' /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }}