CI fix
🏗️ Build Plugin / build (push) Failing after 9s
🧪 Test Plugin / test (push) Failing after 11s

This commit is contained in:
2025-11-14 20:43:09 +01:00
parent eb6bfad0d2
commit 24ed1de959
3 changed files with 9 additions and 9 deletions
+3 -3
View File
@@ -27,13 +27,13 @@ jobs:
run: dotnet --version
- name: Restore dependencies
run: dotnet restore
run: dotnet restore Jellyfin.Plugin.SRFPlay.sln
- name: Build solution
run: dotnet build --configuration Debug --no-restore
run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Debug --no-restore
- name: Run tests
run: dotnet test --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx"
run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx"
- name: Upload test results
if: always()