Improves theme support. #150
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: | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install MAUI Workload | |
run: dotnet workload install maui --ignore-failed-sources | |
- name: Restore dependencies | |
run: dotnet restore .\Source\ | |
- name: Build console | |
run: dotnet build .\Source\Pekspro.RadioStorm.Sandbox.Console\Pekspro.RadioStorm.Sandbox.Console.csproj --no-restore | |
- name: Build WPF | |
run: dotnet build .\Source\Pekspro.RadioStorm.Sandbox.WPF\Pekspro.RadioStorm.Sandbox.WPF.csproj --no-restore | |
- name: Build MAUI | |
run: dotnet build .\Source\Pekspro.RadioStorm.MAUI\Pekspro.RadioStorm.MAUI.csproj --no-restore | |