diff --git a/.gitea/workflows/dev_pipeline.yaml b/.gitea/workflows/dev_pipeline.yaml index 93d918d..3603c40 100644 --- a/.gitea/workflows/dev_pipeline.yaml +++ b/.gitea/workflows/dev_pipeline.yaml @@ -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