File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Benchmarks
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ benchmark :
8+ runs-on : ubuntu-latest
9+ env :
10+ Solution_name : JsonFlatFileDataStore.sln
11+ steps :
12+ - uses : actions/checkout@v4
13+ - uses : actions/setup-dotnet@v4
14+ with :
15+ dotnet-version : |
16+ 10.0.x
17+ - name : Restore
18+ run : dotnet restore
19+ - name : Build
20+ run : dotnet build -c Release
21+ - name : Run Benchmarks
22+ run : dotnet run --project JsonFlatFileDataStore.Benchmark/JsonFlatFileDataStore.Benchmark.csproj -c Release -- --filter '*'
23+ - name : Upload Benchmark Results
24+ uses : actions/upload-artifact@v4
25+ if : always()
26+ with :
27+ name : benchmark-results
28+ path : |
29+ **/BenchmarkDotNet.Artifacts/**
30+ BenchmarkDotNet.Artifacts/**
31+ if-no-files-found : warn
You can’t perform that action at this time.
0 commit comments