We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 754790b commit 1ba04dcCopy full SHA for 1ba04dc
.github/workflows/test.yml
@@ -14,20 +14,11 @@ jobs:
14
with:
15
dotnet-version: 8.0.x
16
17
- - name: Restore dependencies
18
- run: |
19
- dotnet restore src
20
- dotnet restore test
21
- dotnet restore benchmark
22
-
23
- name: Build
24
25
- dotnet build --no-restore --configuration Release src
26
- dotnet build --no-restore --configuration Release test
27
- dotnet build --no-restore --configuration Release benchmark
+ run: dotnet build --configuration Release
28
29
- name: Run tests
30
- run: dotnet test --no-build --configuration Release test
+ run: dotnet test --no-build --configuration Release
31
32
- name: Pack
33
run: dotnet pack src --no-build --configuration Release --output ./nupkg
0 commit comments