Skip to content

add ut, rename stuff #159

add ut, rename stuff

add ut, rename stuff #159

Workflow file for this run

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