We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4427cb2 commit a83d2cbCopy full SHA for a83d2cb
1 file changed
.github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: Build & Test
+name: Test
2
3
on:
4
pull_request:
@@ -15,19 +15,14 @@ jobs:
15
16
steps:
17
- uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 2
20
21
- name: Setup .NET
22
uses: actions/setup-dotnet@v3
23
with:
24
dotnet-version: 9.0.x
25
26
- - name: Restore dependencies
27
- run: dotnet restore
28
-
29
- - name: Build
30
- run: dotnet build -c Release --no-restore
+ - name: Test (Debug)
+ run: dotnet test -c Debug
31
32
- - name: Test
33
- run: dotnet test --no-restore --verbosity normal
+ - name: Test (Release)
0 commit comments