From fd85a87f5dfbf58e9e6bdeb2080007381236130b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Wei=C3=9F?= <72068105+Sandoun@users.noreply.github.com> Date: Thu, 6 Jul 2023 23:08:28 +0200 Subject: [PATCH] Added maui workloads --- .github/workflows/test-pipeline.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-pipeline.yml b/.github/workflows/test-pipeline.yml index 74872bb..5d22828 100644 --- a/.github/workflows/test-pipeline.yml +++ b/.github/workflows/test-pipeline.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Extract branch name + - name: 'Extract branch name' shell: bash run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT id: extract_branch @@ -34,6 +34,11 @@ jobs: 6.0.x 7.0.x + - name: 'Install MAUI Workloads' + run: | + dotnet workload install android --ignore-failed-sources + dotnet workload install maui --ignore-failed-sources + - name: 'Run tests' run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=../Builds/TestResults/coverage.opencover.xml