@@ -15,32 +15,32 @@ jobs:
1515 runs-on : windows-latest # Or macos-latest for iOS/Mac Catalyst builds
1616
1717 steps :
18- - uses : actions/checkout@v4
18+ - uses : actions/checkout@v4
1919
20- - name : Setup .NET SDK
21- uses : actions/setup-dotnet@v4
22- with :
23- dotnet-version : ' 10.0.x'
20+ - name : Setup .NET SDK
21+ uses : actions/setup-dotnet@v4
22+ with :
23+ dotnet-version : " 10.0.x"
2424
25- - name : Install MAUI Workloads
26- run : dotnet workload install maui
25+ - name : Install MAUI Workloads
26+ run : dotnet workload install maui
2727
28- - name : Cache NuGet packages
29- uses : actions/cache@v4
30- with :
31- path : ~/.nuget/packages
32- key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json', '**/*.csproj') }}
33- restore-keys : |
34- ${{ runner.os }}-nuget-
28+ - name : Cache NuGet packages
29+ uses : actions/cache@v4
30+ with :
31+ path : ~/.nuget/packages
32+ key : ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json', '**/*.csproj') }}
33+ restore-keys : |
34+ ${{ runner.os }}-nuget-
3535
36- - name : Remove Local Source for CI
37- run : dotnet nuget remove source LocalNuGetPackages --configfile nuget.config
36+ # - name: Remove Local Source for CI
37+ # run: dotnet nuget remove source LocalNuGetPackages --configfile nuget.config
3838
39- - name : Restore NuGet packages
40- run : dotnet restore LunaDraw.csproj --configfile nuget.config
39+ - name : Restore NuGet packages
40+ run : dotnet restore LunaDraw.csproj --configfile nuget.config
4141
42- - name : Build MAUI App (Windows)
43- run : dotnet build LunaDraw.csproj -c Release -f net10.0-windows10.0.19041.0
42+ - name : Build MAUI App (Windows)
43+ run : dotnet build LunaDraw.csproj -c Release -f net10.0-windows10.0.19041.0
4444
45- - name : Run Unit Tests
46- run : dotnet test tests/LunaDraw.Tests/LunaDraw.Tests.csproj
45+ - name : Run Unit Tests
46+ run : dotnet test tests/LunaDraw.Tests/LunaDraw.Tests.csproj
0 commit comments