Skip to content

Commit de621a5

Browse files
committed
Fix filter
1 parent 3fa044c commit de621a5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,6 @@ jobs:
105105
run: dotnet build --no-restore -f net8.0
106106
- name: Execute
107107
working-directory: ./SerializersBenchmark
108-
run: dotnet run -c Release -f net8.0 -- --runtimes net6.0 net8.0 --filter *
108+
run: dotnet run -c Release -f net8.0 -- --runtimes net6.0 net8.0 --filter *Benchmarks*
109109

110110
#TODO process results

SerializersBenchmark/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class Program
66
{
77
static void Main(string[] args)
88
{
9-
//dotnet run -c Release -f net8.0 -- --runtimes net48 net6.0 net8.0 --filter *
9+
//dotnet run -c Release -f net8.0 -- --runtimes net48 net6.0 net8.0 --filter *Benchmarks*
1010
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
1111
}
1212
}

0 commit comments

Comments
 (0)