Skip to content

Commit acd8315

Browse files
committed
fix: Install local package artifact before test
1 parent 875057e commit acd8315

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,15 @@ jobs:
3232
3333
- name: create NuGet Package
3434
run: dotnet pack Raylib-cs -c Release --output nuget
35+
36+
37+
- name: Test Local Package Install
38+
run: |
39+
dotnet add package --project Raylib-cs.Tests Raylib-cs --source Raylib-cs/bin/Release/
3540
3641
- name: Test
37-
run: dotnet test --verbosity normal
42+
run: |
43+
dotnet test --verbosity normal
3844
3945
- name: upload NuGet Package As Artifact
4046
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)