File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change 22
22
run : dotnet restore
23
23
- name : Build
24
24
run : dotnet build --no-restore --configuration Release
25
- - name : Upload
26
- uses : actions/upload-artifact@v4
27
- with :
28
- name : build
29
- path : |
30
- **/bin/*
31
- **/obj/*
32
25
33
26
test :
34
27
name : Test with MsTest
42
35
uses : actions/setup-dotnet@v4
43
36
with :
44
37
dotnet-version : 9.x
45
- - uses : actions/download-artifact@v4
46
- with :
47
- name : build
48
- path : .
49
- merge-multiple : true
50
38
- name : Test
51
- run : dotnet test ./tests/**/*Tests.csproj --no-restore -- configuration Release --verbosity normal --logger trx --collect:"Code Coverage" --results-directory TestResults
39
+ run : dotnet test ./tests/**/*Tests.csproj --configuration Release --verbosity normal --logger trx --collect:"Code Coverage" --results-directory TestResults
52
40
- name : Upload
53
41
uses : actions/upload-artifact@v4
54
42
with :
You can’t perform that action at this time.
0 commit comments