Skip to content

Commit 5fb9554

Browse files
authored
Add DLLs copying step in CI workflow
Add step to copy DLLs for test execution
1 parent afc2e86 commit 5fb9554

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,10 @@ jobs:
3030
- name: Build
3131
run: dotnet build
3232

33+
- name: Copy Dlls
34+
run: |
35+
mkdir -p Hexa.NET.Utilities/Hexa.NET.Utilities.Tests/bin/Debug/net8.0
36+
cp -r Hexa.NET.Utilities/Hexa.NET.Utilities/runtimes Hexa.NET.Utilities/Hexa.NET.Utilities.Tests/bin/Debug/net8.0/
37+
3338
- name: Run tests
3439
run: dotnet test

0 commit comments

Comments
 (0)