Skip to content

Commit 6478052

Browse files
committed
Fix .env file missing for unit tests
1 parent 9427765 commit 6478052

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ jobs:
6767
with:
6868
dotnet-version: 8.0.x
6969

70-
- run: dotnet restore src\WinDynamicDesktop.sln
70+
- run: |
71+
cp .env.example .env
72+
dotnet restore src\WinDynamicDesktop.sln
7173
7274
- run: dotnet test --verbosity normal
7375
working-directory: test

0 commit comments

Comments
 (0)