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 30e8eef commit 8a9b184Copy full SHA for 8a9b184
.github/workflows/test.yml
@@ -23,11 +23,13 @@ jobs:
23
run: dotnet restore
24
- name: Build
25
run: dotnet build --configuration Release --no-restore
26
+ - name: Pack
27
+ run: dotnet pack --configuration Release --no-restore
28
- name: Save Artifact
29
uses: actions/upload-artifact@v3
30
with:
- name: bin
- path: ./Float.Core/bin/Release/Float.Core/
31
+ name: nupkg
32
+ path: ./Float.Core/obj/Release/
33
retention-days: 5
34
- name: Test
35
run: dotnet test --configuration MAUI --no-restore -f net7.0 --no-build --verbosity normal --logger:"trx;"
0 commit comments