workflows: add test.yaml
This commit is contained in:
20
.gitea/workflows/test.yaml
Normal file
20
.gitea/workflows/test.yaml
Normal file
@ -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 }}
|
Reference in New Issue
Block a user