diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 632e4b00..f41bf666 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,7 +119,7 @@ jobs: run: dotnet clean -c Release && dotnet nuget locals all --clear - name: Run benchmark working-directory: ./source/Handlebars.Benchmark - run: dotnet run -c Release --exporters json --filter '*' -m --join + run: dotnet run -c Release -f net6 --exporters json --filter '*' -m --join - name: Get benchmark file name id: benchmarkfilename working-directory: ./source/Handlebars.Benchmark/BenchmarkDotNet.Artifacts/results diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 99b9b235..41ad537b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -118,7 +118,7 @@ jobs: run: dotnet clean -c Release && dotnet nuget locals all --clear - name: Run benchmark working-directory: ./source/Handlebars.Benchmark - run: dotnet run -c Release --exporters json --filter '*' -m --join + run: dotnet run -c Release -f net6 --exporters json --filter '*' -m --join - name: Get benchmark file name working-directory: ./source/Handlebars.Benchmark/BenchmarkDotNet.Artifacts/results id: benchmarkfilename