We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2296d0 commit 6bd0040Copy full SHA for 6bd0040
.github/workflows/benchmarks.yml
@@ -0,0 +1,39 @@
1
+name: benchmarks
2
+
3
+on:
4
+ workflow_dispatch:
5
+ pull_request_target:
6
+ push:
7
8
+permissions:
9
+ contents: read
10
11
+env:
12
+ DOTNET_NOLOGO: 1
13
+ DOTNET_CLI_TELEMETRY_OPTOUT: 1
14
+ DOTNET_GENERATE_ASPNET_CERTIFICATE: 0
15
+ ContinuousIntegrationBuild: true
16
+ RestoreLockedMode: true
17
18
+jobs:
19
+ build:
20
+ runs-on: ubuntu-latest
21
22
+ strategy:
23
+ matrix:
24
+ configuration: [Debug, Release]
25
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v5
29
30
+ - name: Setup dotnet
31
+ uses: actions/setup-dotnet@v5
32
+ with:
33
+ dotnet-version: |
34
+ 8
35
+ 10
36
37
+ - name: Build benchmarks
38
+ id: build
39
+ run: dotnet build ./Tests/NetOffice.Benchmarks/NetOffice.Benchmarks.csproj -c '${{ matrix.configuration }}'
0 commit comments