File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Benchmark
2+
3+ on :
4+ pull_request :
5+ branches : [ main ]
6+
7+ concurrency : benchmark_pr
8+
9+ jobs :
10+ build :
11+
12+ runs-on : windows-latest
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+ - name : Setup .NET Core
17+ uses : actions/setup-dotnet@v1
18+ with :
19+ dotnet-version : 6.0.x
20+ - name : Install dependencies
21+ run : dotnet restore
22+ - name : Build
23+ run : dotnet build --configuration Release --no-restore
24+ - name : Benchmark
25+ run : dotnet run --project "BitFaster.Caching.Benchmarks" -f net6.0 -c Release --filter *Lru*
26+ - name : Publish Results
27+ uses : actions/upload-artifact@v1
28+ with :
29+ name : Benchmark Artifacts
30+ path : BenchmarkDotNet.Artifacts
Original file line number Diff line number Diff line change 1- name : .NET Core
1+ name : Build and Test
22
33on :
44 push :
You can’t perform that action at this time.
0 commit comments