Skip to content

Commit 8451871

Browse files
author
Petr Sramek
committed
wooohooo454
1 parent bb5be58 commit 8451871

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ jobs:
2222
run: dotnet restore
2323
- name: Build
2424
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/*
3225

3326
test:
3427
name: Test with MsTest
@@ -42,13 +35,8 @@ jobs:
4235
uses: actions/setup-dotnet@v4
4336
with:
4437
dotnet-version: 9.x
45-
- uses: actions/download-artifact@v4
46-
with:
47-
name: build
48-
path: .
49-
merge-multiple: true
5038
- 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
5240
- name: Upload
5341
uses: actions/upload-artifact@v4
5442
with:

0 commit comments

Comments
 (0)