Commit e78dee9 1 parent de0464f commit e78dee9 Copy full SHA for e78dee9
File tree 1 file changed +6
-15
lines changed
1 file changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -43,20 +43,11 @@ jobs:
43
43
with :
44
44
dotnet-version : ${{ env.DOTNET_VERSION }}
45
45
46
- - name : Install .NET MAUI Workload
47
- run : dotnet workload install maui
48
-
49
46
- name : Restore dependencies
50
47
run : dotnet restore
51
-
52
- - name : Publish .NET MAUI iOS App
53
- run : dotnet publish ${{ env.MAUI_CSPROJ_TO_BUILD }} -c ${{ env.BUILD_CONFIGURATION }} -f ${{ env.TFM_PREFIX }}-ios -o ${{ github.workspace }}/artifacts/
54
-
55
- - name : Build UITest Project
56
- run : dotnet build ${{ env.UITEST_CSPROJ_TO_BUILD }} -c ${{ env.BUILD_CONFIGURATION }}
57
-
58
- - name : Install App Center CLI
59
- run : npm install --location=global appcenter-cli
60
-
61
- - name : Upload App to Test Cloud
62
- run : appcenter test run uitest --app "${{ env.APP_DEFINITION }}" --devices "${{ env.TEST_DEVICES }}" --app-path "${{ github.workspace }}/artifacts/MauiUITestSample.ipa" --test-series "${{ env.TEST_SERIES }}" --build-dir "MyAppTests/bin/${{ env.BUILD_CONFIGURATION }}/net48/" --uitest-tools-dir "MyAppTests/bin/${{ env.BUILD_CONFIGURATION }}/net48/" --token "${{ secrets.APPCENTER_TOKEN_IOS }}" --async
48
+
49
+ - name : Build
50
+ run : dotnet build --configuration Release --no-restore
51
+
52
+ - name : Test
53
+ run : dotnet test --configuration Release --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments