diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 741adaa70..3e7a297c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: dotnet-version: '8.0.x' - name: Solution Compilation run: | - powershell 'Get-FileHash -Algorithm sha256 tools/* | % {""- "" + $_.Hash + "" "" + (Resolve-Path -Path $_.Path -Relative)}' + powershell 'Get-FileHash -Algorithm sha256 tools/* | % {"- " + $_.Hash + " " + (Resolve-Path -Path $_.Path -Relative)}' dotnet build -maxCpuCount:1 --configuration Debug - name: Testing run: dotnet test --no-build --configuration Debug