diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 3668cb5..ca04789 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -25,13 +25,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 Release --no-restore + run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Release --no-restore - name: Run tests - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Release --verbosity normal - name: Install JPRM run: | diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 3b2520f..c6d4111 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -41,13 +41,13 @@ jobs: cat build.yaml - name: Restore dependencies - run: dotnet restore + run: dotnet restore Jellyfin.Plugin.SRFPlay.sln - name: Build solution - run: dotnet build --configuration Release --no-restore + run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Release --no-restore - name: Run tests - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Release --verbosity normal - name: Install JPRM run: | diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 974c721..a460c8b 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -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()