Update dev_pipeline.yaml
Dev testing pipeline / BuildAndTest (push) Successful in 5m1s Details

This commit is contained in:
Vasya Ryzhkoff 2024-07-27 15:53:13 +07:00
parent 8575871604
commit 7e51cd99ab
1 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,8 @@ jobs:
- name: Restore dependencies 🔪
run: dotnet restore
- name: Build debug app ☢️
run: dotnet build -c Debug --no-restore
run: |
dotnet build -c Debug --no-restore
cp ${{gitea.workspace}}/Yuna.Website/Yuna.Website.Server/GlobalSettings.json ${{gitea.workspace}}/Yuna.Tests/bin/Debug/net8.0/globalSettings.json
- name: Run unit tests 💊
run: dotnet test -c Debug --no-build