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