From c81845c3381e4cbf04fa360931221bda690246fe Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Sun, 11 Jan 2026 10:03:21 +0100 Subject: [PATCH] remove un-need test workflow --- .gitea/workflows/test.yaml | 44 -------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml deleted file mode 100644 index 609c98b..0000000 --- a/.gitea/workflows/test.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: '🧪 Test Plugin' - -on: - push: - branches: - - master - - develop - paths-ignore: - - '**/*.md' - pull_request: - branches: - - master - - develop - paths-ignore: - - '**/*.md' - workflow_dispatch: - -jobs: - test: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Verify .NET installation - run: dotnet --version - - - name: Restore dependencies - run: dotnet restore Jellyfin.Plugin.Jellypod.sln - - - name: Build solution - run: dotnet build Jellyfin.Plugin.Jellypod.sln --configuration Debug --no-restore --no-self-contained - - - name: Run tests - run: dotnet test Jellyfin.Plugin.Jellypod.sln --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx" - - - name: Upload test results - if: always() - uses: actions/upload-artifact@v3 - with: - name: test-results - path: '**/test-results.trx' - retention-days: 7