add ut, rename stuff #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build_test | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 9 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 9.0.x | |
- name: Install MAUI Workload | |
run: dotnet workload install maui | |
- name: Restore Dependencies | |
run: dotnet restore LM-Kit-Maestro.sln | |
- name: Build Debug Configuration | |
run: dotnet build LM-Kit-Maestro.sln --no-restore --configuration Debug | |
#---- Loïc: comment, this is not working even on my local machine. todo: investigate. | |
#- name: Build Release Configuration | |
# run: dotnet build LM-Kit-Maestro.sln --no-restore --configuration Release | |