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 }}