diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 07a8196..c9c8807 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,12 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: + # .NET 6 SDK is required for xamlstyler.console to run. + - name: Install .NET SDK v6 + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 6.0.x + - name: Install .NET SDK v${{ env.DOTNET_VERSION }} uses: actions/setup-dotnet@v4 with: @@ -89,7 +95,7 @@ jobs: # Test job to build the project template project-template: - runs-on: windows-latest + runs-on: windows-latest-large env: HEADS_DIRECTORY: tooling/ProjectHeads PROJECT_DIRECTORY: tooling/ProjectTemplate @@ -139,7 +145,7 @@ jobs: # Test job to build a single experiment to ensure our changes work for both our main types of solutions at the moment new-experiment: - runs-on: windows-latest + runs-on: windows-latest-large strategy: fail-fast: false # prevent one matrix pipeline from being cancelled if one fails, we want them all to run to completion.