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 c7ea34c commit 8102fddCopy full SHA for 8102fdd
.github/workflows/dotnet.yml
@@ -23,8 +23,11 @@ jobs:
23
run: dotnet restore
24
- name: Build
25
run: dotnet build --no-restore
26
- - name: Test
27
- run: dotnet test --no-build --verbosity normal
+ - name: Upload
+ uses: actions/upload-artifact@v4
28
+ with:
29
+ name: build
30
+ path: build
31
32
test:
33
needs: [build]
@@ -37,6 +40,11 @@ jobs:
37
40
uses: actions/setup-dotnet@v3
38
41
with:
39
42
dotnet-version: 9.x
43
+ - uses: actions/download-artifact@v4
44
+ - name: Display structure of downloaded files
45
46
47
+ run: ls -R
48
- name: Test
49
run: dotnet test --no-build --verbosity normal
50
0 commit comments